* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: white;
  color: black;
  line-height: 1.55;
}
/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px;
}
/* ===== Navbar ===== */
      header {
        width: 100%;
        background-color: rgba(11, 18, 32, 0.95);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      }

      .navbar {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
      }

      /* Logo */
      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .logo img {
        width: 45px;
        height: 45px;
        background-color: white;
      }

      .logo h2 {
        font-size: 20px;
        color: #fff;
        letter-spacing: 1px;
      }

      /* Center Menu */
      .nav-links {
        display: flex;
        gap: 40px;
        list-style: none;
      }

      .nav-links li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        transition: 0.3s;
      }

      .nav-links li a:hover {
        color: #e63946;
      }

      /* Right Button */
      .nav-btn {
        background: #c7a87a;
        color: #fff;
        padding: 10px 22px;
        border: none;
        border-radius: 5px;
        font-size: 15px;
        cursor: pointer;
        transition: 0.3s;
      }

      .nav-btn:hover {
        background: #c92b38;
      }

      /* ===== Mobile Menu ===== */
      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
      }

      .hamburger span {
        width: 25px;
        height: 3px;
        background: #fff;
        transition: 0.3s;
      }

      /* Responsive */
      @media (max-width: 900px) {
        .nav-links {
          display: none;
          position: absolute;
          top: 70px;
          left: 0;
          width: 100%;
          background: #131a2e;
          flex-direction: column;
          align-items: center;
          gap: 20px;
          padding: 20px 0;
          transition: 0.3s;
        }

        .nav-links.active {
          display: flex;
        }

        .hamburger {
          display: flex;
        }
      }

/* ===== Hero Section ===== */
    .hero {
      text-align: center;
      padding: 120px 20px;
      background: url('event-banner.jpg') center/cover no-repeat;
      color: #fff;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.55);
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: 48px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .hero p {
      font-size: 20px;
      margin-bottom: 25px;
    }

    .hero .cta-btn {
      background: #e63946;
      padding: 12px 28px;
      border: none;
      color: #fff;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .hero .cta-btn:hover {
      background: #c92b38;
    }

    /* ===== About Section ===== */
    .about {
      text-align: center;
      max-width: 900px;
      margin: auto;
    }

    .about h2 {
      color: #e63946;
      margin-bottom: 15px;
      font-size: 42px;
    }

    /* ===== Highlights ===== */
    .highlights h2{
        font-size: 42px;
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .highlight-card {
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s;
    }

    .highlight-card:hover {
      transform: translateY(-5px);
    }

    /* ===== Sponsors ===== */
    .sponsors {
      text-align: center;
    }

    .sponsors h2{
        font-size: 42px;
    }

    .sponsor-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      margin-top: 30px;
    }

    .sponsor-logos img {
      width: 200px;
      filter: grayscale(100%);
      transition: 0.3s;
    }

    .sponsor-logos img:hover {
      filter: grayscale(0);
    }

    /* ===== Schedule ===== */
    /* Event Details Section */
.event-details {
  background: #fff;
  color: #000;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  /* background-color: #ccc; */
}

.event-container {
  display: flex;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

.event-image {
  flex: 1;
  min-width: 300px;
}

.event-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-info {
  flex: 1;
  min-width: 300px;
}

.event-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.event-info p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
}

.event-meta p {
  margin: 8px 0;
  font-size: 16px;
}

.event-btn {
  display: inline-block;
  margin-top: 20px;
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.event-btn:hover {
  background: #333;
}
    /* ===== Registration Form ===== */
    .form-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
      justify-content: center;
    }

    .form-text {
      flex: 1;
      min-width: 300px;
    }

    .form-text h3 {
      color: #e63946;
      font-size: 41px;
      margin-bottom: 10px;
    }

    form {
      flex: 1;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    form input, form textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 15px;
    }

    form button {
      background: #e63946;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    form button:hover {
      background: #c92b38;
    }

    /* ===== Map ===== */
    .map iframe {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 10px;
      margin-top: 30px;
    }
    .map h2{
        font-size: 42px;
    }

    /* ===== Footer ===== */
:root {
    --navy: #071018;
    --accent: #c7a87a;
    --text: #f5f5f5;
  }

  .footer {
    background: var(--navy);
    color: var(--text);
    padding: 60px 6% 20px;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Logo + About */
  .footer-logo {
    width: 140px;
    margin-bottom: 20px;
  }

  .footer-about {
    flex: 1 1 35%;
  }
.footer-about img{
  background-color: white;
}
  .footer-about p {
    line-height: 1.6;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
  }

  /* Links */
  .footer-links h4,
  .footer-contact h4 {
    color: var(--accent);
    margin-bottom: 15px;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: var(--accent);
  }

  /* Contact */
  .footer-contact p {
    margin: 6px 0;
    font-size: 15px;
  }

  .footer-contact a {
    color: var(--accent);
    text-decoration: none;
  }

  /* Social Icons */
  .social-icons {
    margin-top: 15px;
  }

  .social-icons a {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
  }

  .social-icons img {
    width: 22px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    background-color: white;
  }

  .social-icons a:hover {
    transform: translateY(-3px);
  }

  .social-icons a:hover img {
    opacity: 1;
  }

  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
    .footer-about, .footer-links, .footer-contact {
      flex: 1 1 100%;
    }
    .footer-logo {
      margin: 0 auto 20px;
    }
    .social-icons a {
      margin-right: 15px;
    }
  }

/* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* small utilities */
.muted {
  color: var(--muted);
}
.center {
  text-align: center;
}
.gap {
  height: 28px;
}

