/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #FFFFFF;
    color: #333;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header Styles */
  header {
    background: #005596; /* Blue */
    color: #FFFFFF;
    padding: 10px 0;
  }
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  .header-left {
    text-align: left;
  }
  .header-center {
    text-align: center;
  }
  
  .header-right {
    text-align: right;
  }
  .logo {
    max-width: 150px;
  }
  header h1 {
    font-size: 2.5rem;
    color: #E7A614; /* Gold accent */
  }
  
  /* Desktop Navigation */
  .desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .desktop-nav a {
    color: #E7A614;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  .desktop-nav a:hover {
    color: #FFFFFF;
    text-decoration: underline;
  }
  
  /* Hamburger Menu (Mobile) */
  .hamburger {
    display: none; /* Shown in media query */
    flex-direction: column;
    cursor: pointer;
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #E7A614;
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  
  /* Mobile Navigation Panel */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: #005596;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px;
    padding-left: 10px;
  }
  .mobile-nav.open {
    transform: translateX(0);
  }
  .mobile-nav .close-btn {
    font-size: 2rem;
    color: #E7A614;
    cursor: pointer;
    text-align: right;
  }
  .mobile-nav ul {
    list-style: none;
    padding: 10;
    margin-top: 40px;
  }
  .mobile-nav li {
    margin-bottom: 20px;
  }
  .mobile-nav a {
    color: #E7A614;
    text-decoration: none;
    font-size: 1.2em;
  }
  .mobile-nav a:hover {
    color: #FFFFFF;
  }
  
  /* Responsive: Mobile Styles */
  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
    .hamburger {
      display: flex;
    }
    /* Adjust header layout on mobile */
    .header-container {
      flex-wrap: nowrap;
      align-items: center;
    }
    .header-left {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo {
      max-width: 80px;
    }
    header h1 {
      font-size: 1.5rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .awareness-gallery {
      column-count: 3;
    }
  }
  
  /* Section Styles */
  .section {
    padding: 10px 0;
    /* Initial state for fade in */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
  }
  .section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #005596;
  }
  .section p {
    margin-bottom: 10px;
  }
  
  /* Donate Section */
  .donate-section {
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 10px;
  }
  .donate-button {
    display: inline-block;
    padding: 15px 30px;
    background: #E7A614; /* Gold */
    color: #005596; /* Blue text */
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
  }
  .donate-button:hover {
    background: #c68910;
    transform: scale(1.05);
  }
  
  /* Talent Grid & Cards (Meet the Contestants page) */
  .talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .talent-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .talent-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .talent-card img {
    width: 100%;
    height: auto;
  }
  .talent-card h3 {
    margin: 10px;
    color: #005596;
  }
  .talent-card p {
    margin: 0 10px 10px;
    color: #666;
  }
  
  /* Talent Detail Page */
  .talent-detail {
    text-align: center;
  }
  .talent-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  /* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
  margin-top: 20px;
}

.photo-gallery img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.photo-gallery img:hover {
  transform: scale(1.05);
}

/* Awareness Tent Gallery - Collage Layout */
.awareness-gallery {
  column-count: 5;
  column-gap: 1rem;
}

.awareness-gallery img {
  width: 100%;
  margin-bottom: 1rem;
  display: block;
  /* Optional: add a small border or shadow */
  border-radius: 4px;
}

/* Video Gallery Styles */
.video-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.video-gallery video {
  width: 100%;
  max-width: 400px; /* Adjust as needed */
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Adjust video sizing on smaller screens if needed */
@media (max-width: 768px) {
  .video-gallery video {
    max-width: 100%;
  }
}

  
  /* Footer Styles */
  footer {
    background: #005596;
    color: #FFFFFF;
    text-align: center;
    padding: 20px 0;
  }
  
  /* Fade In Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  