@font-face {
  font-family: "Knewave";
  src: url("../elements/fonts/Knewave/Knewave-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../elements/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../elements/fonts/Poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../elements/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../elements/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../elements/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../elements/fonts/Poppins/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../elements/fonts/Poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../elements/fonts/Poppins/Poppins-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../elements/fonts/Poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../elements/fonts/Poppins/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar__brand {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-transform: uppercase;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.navbar__links a {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.navbar__links a:hover, .navbar__links a:focus-visible {
  color: #FFFFFF;
}
.navbar__cta {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #1467e5;
  border-radius: 999px;
  padding: 0.55rem 1.6rem;
  transition: background 0.2s;
}
.navbar__cta:hover, .navbar__cta:focus-visible {
  background: #1055c4;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1.25rem;
  }
  .navbar__links {
    display: none;
  }
}
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hero__mute-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #FFFFFF;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.15s ease;
}
.hero__mute-btn:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.08);
}
.hero__mute-btn:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}
.hero__mute-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.hero__mute-icon--on {
  display: none;
}
.hero__mute-icon--off {
  display: block;
}
.hero__mute-btn--unmuted .hero__mute-icon--on {
  display: block;
}
.hero__mute-btn--unmuted .hero__mute-icon--off {
  display: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.hero__title {
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: #FFFFFF;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.activities {
  background: #111;
  padding: 4rem 2rem;
}
.activities__title {
  text-align: center;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #FFFFFF;
  margin-bottom: 3rem;
}
.activities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.activities__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.activities__item img {
  width: 100%;
  max-width: 160px;
  height: 160px;
  object-fit: contain;
}
.activities__item span {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .activities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.edition {
  background: #0a0a0a;
  padding: 3.5rem 2rem;
  text-align: center;
}
.edition__title {
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
}

.banner {
  background: #1467e5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner img {
  width: 100%;
  display: block;
}

.schedule {
  background: #111;
  padding: 5rem 2rem;
}
.schedule__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.schedule__heading {
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.schedule__days {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
.schedule__day {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  padding-bottom: 6px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.schedule__day--active {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}
.schedule__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.schedule__list[hidden] {
  display: none;
}
.schedule__list .schedule__spacer {
  height: 0.8rem;
}
.schedule__list li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.schedule__list time {
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  min-width: 72px;
  flex-shrink: 0;
}
.schedule__list span {
  font-weight: 700;
  font-size: 0.88rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.schedule__photo img {
  width: 100%;
  max-width: 460px;
}

@media (max-width: 768px) {
  .schedule__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.register {
  background: #0a0a0a;
  padding: 5rem 2rem;
  text-align: center;
}
.register .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.register__title {
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
}
.register__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #1467e5;
  border-radius: 999px;
  padding: 1rem 3.5rem;
  transition: background 0.2s, transform 0.2s;
}
.register__cta:hover, .register__cta:focus-visible {
  background: #1055c4;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .register__title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}
.footer {
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__col {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer__link {
  transition: color 0.2s ease;
  text-decoration: none;
}
.footer__link:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .footer__inner {
    justify-content: center;
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map */
