/* ==================================================
   GLOBAL
================================================== */

body {
  margin: 0;
  font-family: 'Gotham', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background-color: #FEFEFE;
  color: #05367B;
  font-size: 18px;
  line-height: 1.7;
}

html {
  scroll-behavior: smooth;
}

/* ==================================================
   HEADER
================================================== */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #05367B;
  padding: 8px 20px;
  position: relative;
  z-index: 10;
  gap: 24px;
}

/* Logo container */
.logo-link {
  display: inline-block;
}

.logo-container {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SINGLE logo rule */
.logo {
  height: 64px;
  width: auto;
  display: block;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #FEFEFE;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
}

.nav-links li a:hover {
  background-color: #305CDE;
  border-radius: 5px;
}

/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('/assets/images/hero-2026.webp') center center / cover no-repeat;
  color: #FEFEFE;
  text-align: center;
  padding: 80px 20px;
}

.hero-content h1,
.hero-content p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
  font-size: 2.6em;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.4em;
  font-style: italic;
  margin-bottom: 20px;
}

.date,
.location {
  font-size: 1.2em;
  margin: 5px 0;
}

/* ==================================================
   INFO SECTION
================================================== */

.info-section {
  display: flex;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
  background-color: #FEFEFE;
  color: #05367B;
  flex-wrap: wrap;
}

.info-text {
  flex: 1;
  min-width: 300px;
}

.info-text h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.info-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #626365;
}

/* ==================================================
   BUTTONS
================================================== */

.register-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #305CDE;
  color: #FEFEFE;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.15s ease, background-color 0.3s ease;
}

.register-button:hover {
  background-color: #05367B;
}

.register-button:active {
  transform: scale(0.97);
}

/* ==================================================
   FEATURES
================================================== */

.info-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f8f9fc;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
}

.feature img {
  width: 40px;
  height: 40px;
}

/* ==================================================
   PAGE CONTENT
================================================== */

.page-content {
  padding: 60px 20px;
  text-align: center;
  color: #05367B;
}

.content-wrapper {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 0 30px;
  text-align: left;
}

.page-content h1 {
  font-size: 2.6em;
  font-weight: 700;
  color: #05367B;
  margin-bottom: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.page-content .tagline {
  font-size: 1.5em;
  color: #305CDE;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}

.page-content h2,
.page-content h3 {
  font-size: 1.6em;
  margin-top: 40px;
  color: #05367B;
}

.page-content p {
  margin-bottom: 20px;
}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
  background-color: #05367B;
  color: #FEFEFE;
  text-align: center;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-links li a {
  color: #FEFEFE;
  text-decoration: none;
  font-weight: 600;
}

.footer-links li a:hover {
  color: #305CDE;
}

/* ==================================================
   MOBILE NAVIGATION
================================================== */

.menu-toggle {
  display: none;
}

@media (max-width: 900px) {

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #FEFEFE;
    font-size: 2rem;
    cursor: pointer;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .logo {
    height: 52px;
  }

  nav {
    width: 100%;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #05367B;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    padding: 6px 16px;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
}