/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #f5f5f5;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: rgba(15, 15, 15, 0.8);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* left | center | right */
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.nav-links a{
    text-decoration: none;
    font-size: 1.2rem;
    color: #00e0ff;
}
.nav-links a:hover{
    color:pink;
    transition: 0.3s;
    transform: scale(2);
}

.nav-left ul {
    list-style: none;
    display: flex;
    gap: 25px;
    text-decoration: none;
    color: #00e0ff;
}

.nav-left {
    justify-self: start;
}

.nav-center {
    justify-self: center;
}

.nav-right {
    justify-self: end;
}

/* Logo image beside text */


.logo {
    display: flex;
    flex-direction:row;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    color: #00e0ff;
    text-shadow: 0 0 15px #00e0ff;
    justify-content: center;  /* keeps it centered in nav-center grid cell */
}




.nav-buttons button {
    padding: 8px 18px;
    border: none;
    background: #00e0ff;
    color: black;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.nav-buttons button:hover {
    background: #00bcd4;
    transform: scale(1.1);
}
.logoimg{
    width:200px;
    border-bottom-left-radius: 30%;
    border-top-right-radius:30% ;
    border-bottom-right-radius: 2rem;
    border-top-left-radius: 2rem;
    transition: transform 0.4s;
}
.hero-content img:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(0, 224, 255, 0.7);
    
}
/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.hero h3{
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 50px;
}

.hero .highlight {
    color: #00e0ff;
}

.hero p {
    margin: 10px 0;
    font-size: 22px;
    opacity: 0.85;
}

.cta-btn {
    display: inline-block;
    height: 70px;
    width: 300px;
    margin-top: 20px;
    text-align: center;
    font-size: 30px;
    padding: 13px 28px;
    border-radius: 30px;
    background: linear-gradient(90deg, #00e0ff, #00ff9d);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.1);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Sections */
section {
    padding: 100px 20px;
    text-align: center;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #00e0ff;
}

/* Gallery */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.organizers h2{
    font-size: 32px;
    margin-bottom: 20px;
    color: #00e0ff;
}
h3{
    font-weight: 600;
    font-size: 1.2rem;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.gallery-container img {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    object-fit: cover;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
}
.about h2{
    font-size: 32px;
    margin-bottom: 20px;
    color: #00e0ff;
}

.gallery-container img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 224, 255, 0.7);
}

/* About */
.about p {
    max-width: 1200px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.85;
}
.about strong{
    font-size: 1.8rem;
    color: blueviolet;
}
/* Contact */
.contact p {
    margin: 8px 0;
    font-size: 18px;
}

/* Footer */
footer {
    background: #050505;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

footer .highlight {
    color: #00e0ff;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-left ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .gallery-container img {
        width: 90%;
        height: 300px;
        object-fit: cover;
        overflow: hidden;
    }
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: all 0.3s;
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .nav-left ul {
      position: absolute;
      top: 60px;
      left: -100%;
      background: #0f0f0f;
      width: 100%;
      flex-direction: column;
      text-align: center;
      padding: 15px 0;
      transition: left 0.3s ease;
    }
  
    .nav-left ul.active {
      left: 0;
    }
    
    .nav-left ul li {
      margin: 15px 0;
    }
    .nav-links .nav-buttons{
        display: inline-block;
    }
    .hamburger {
      display: flex;
    }
  }
  /* Organizers Section */
.organizers-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.organizer {
    text-align: center;
    width: 250px;
}

.organizer img {
    width: 250px;
    height: 250px;
    border-top-left-radius: 30%;
    border-bottom-right-radius: 30%;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 10%;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
}

.organizer img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 224, 255, 0.6);
}

.organizer p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    font-size: 1.5rem;
    color: #00e0ff;
}

/* 📱 Mobile View - Vertical Layout */
@media (max-width: 768px) {
    .organizers-container {
        flex-direction: column; /* stack vertically */
        align-items: center;    /* center items */
        gap: 25px;
    }
    
    .organizer {
        width: 200px; /* slightly bigger in vertical layout */
    }

    .organizer img {
        width: 200px;
        height: 200px;
        border-radius: 10%;
    }

    .organizer p {
        font-size: 20px;
    }
}
/* ✅ Center hero image */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers horizontally */
    justify-content: center;
    gap: 1px; /* space between logo, heading, and text */
}

/* ✅ Center organizers images */
.organizers-container {
    display: flex;
    justify-content: center;  /* center horizontally */
    align-items: center;      /* center vertically in row */
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.organizer {
    text-align: center;
}
/* Hide mobile-buttons in desktop */
.mobile-buttons {
    display: none;
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .mobile-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 15px;
    }
    .nav-right{
        display: none;
    }
    .mobile-buttons button {
      padding: 10px;
      border: none;
      background: #00e0ff;
      color: black;
      font-weight: bold;
      border-radius: 25px;
      cursor: pointer;
      transition: transform 0.3s, background 0.3s;
      width: 80%;
      margin: 0 auto;
    }
  
    .mobile-buttons button:hover {
      background: #00bcd4;
      transform: scale(1.05);
    }
  }
  