/* src/assets/styles/variables.css */
:root {
  --sl-primary: #0cdceb;
  --sl-secondary: #e90c85;
  --sl-primary-dark: #0ab6c2;
  --sl-secondary-dark: #c20a6f;
  --hero-bg: #2e3f41;
  --sl-dark-accent: #3b686b;
  --sl-dark-accent2: #429096;
}

/* src/assets/styles/global.css */
:root {
  --buncss-light: ;
  --buncss-dark: initial;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--hero-bg);
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

/* src/assets/styles/hero.css */
.event-hero {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  width: auto;
  height: 100vh;
}

.top-bar, .bottom-bar {
  background: #000;
  height: 14em;
}

@media (max-width: 768px) {
  .top-bar, .bottom-bar {
    height: 9em;
  }
}

@media (max-width: 400px) {
  .top-bar, .bottom-bar {
    height: 6em;
  }
}

.top-bar-inner, .bottom-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items:  center;
  height: 100%;
  margin: 0;
  padding: 0 40px;
}

.bottom-bar-inner {
  gap: 2em;
  padding: 0 80px;
}

.bottom-bar-inner svg:hover {
  fill: #aaa;
}

@media (max-width: 768px) {
  .top-bar-inner, .bottom-bar-inner {
    justify-content: center;
  }

  .bottom-bar-inner {
    gap: 1.25em;
    padding: 0;
  }
}

@media (max-width: 400px) {
  .bottom-bar-inner {
    gap: 1em;
  }

  .bottom-bar-inner svg {
    width: 24px;
    height: 24px;
  }
}

.event-logo img {
  height: 7em;
}

@media (max-width: 768px) {
  .event-logo img {
    height: 5em;
  }
}

@media (max-width: 400px) {
  .event-logo img {
    height: 3.5em;
  }
}

.event-hero-main {
  position: relative;
  display: flex;
  align-items:  center;
  min-height: 350px;
}

@media (max-width: 768px) {
  .event-hero-main {
    align-items:  flex-end;
    min-height: 36em;
  }
}

@media (max-width: 400px) {
  .event-hero-main {
    min-height: 34em;
  }
}

.event-hero-content {
  display: flex;
  flex-direction: column;
  align-items:  flex-end;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
}

@media (max-width: 768px) {
  .event-hero-content {
    text-align: center;
    align-items:  center;
    gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 400px) {
  .event-hero-content {
    gap: 15px;
    padding: 10px;
  }
}

.event-date {
  text-align: right;
  font-size: 32px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .event-date {
    color: #000;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
  }
}

.event-tickets-cta {
  display: inline-block;
  color: #fff;
  background: var(--sl-secondary-dark);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  padding: 18px 40px;
  transition: background .2s, color .2s, box-shadow .2s;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 4px 16px #0000001f;
}

@media (max-width: 768px) {
  .event-tickets-cta {
    padding: 16px 32px;
    font-size: 24px;
  }
}

.event-tickets-cta:hover, .event-tickets-cta:focus {
  background: var(--sl-secondary);
  color: #fff;
}

.event-hero-bg {
  position: absolute;
  background-image: url("./pingwin-yfx3mh1m.png");
  background-position: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  translate: -28%;
}

@media (max-width: 768px) {
  .event-hero-bg {
    background-position: 60%;
    translate: 0;
  }
}

/* src/assets/main.css */

