* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
}
/* =================================================================== Header section ====================================================================== */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: #000;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6); 
  display:flex;
  justify-content:space-between;   /* logo left, hamburger right */
  padding:15px 25px;   /* side spacing */

}
.main-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  
}
.logo:hover {
  color: #1dd1a1;
}

/* Nav sits in middle column */
.nav-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
+
}
.nav-link {
  text-decoration: none;
  color:WHITE;
  font-size: 14px;
  letter-spacing: 2px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #1dd1a1;
}

.nav-link.active {
  color:#1dd1a1; /* green highlight */
}


.social {
  display: flex;
  gap: 20px;
}

.social a {
  color: #aaa;
  font-size: 16px;
  transition: 0.3s;
}

.social a:hover {
  color: #1dd1a1;
}
/* ==============================================Dropdown section========================================================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background:  #e0e0e0;
  min-width: 200px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  border-radius: 6px;
  z-index: 5000;      /* above everything */
box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.dropdown-menu a {
  color: #222;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 13px;
  z-index: 2000;
}

.dropdown-menu a:hover {
  background: #1dd1a1;
  color: #000;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* ==================================================================Gallery Grid  &  Gallery Wrapper===================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

/* Each Item */
.item {
  position: relative;
  width: 100%;
  height: 250px; /* increased height */
  overflow: hidden;
}

/* Images fill container */
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(100%);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.overlay h2 {
  color: #1dd1a1;
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: 1.5px;
}

.overlay a {
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 10px 18px;
  font-size: 12px;
  transition: 0.3s ease;
}

.overlay a:hover {
  background: #1dd1a1;
  border-color: #1dd1a1;
  color: #000;
}

/* Hover Effects */

.item {
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border 0.4s ease;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover */
.item:hover {
  transform: translateY(-10px) scale(1.05);
  border: 3px solid #1dd1a1;
  box-shadow: 0 15px 40px rgba(0, 255, 240, 0.4);
}

.item:hover img {
  filter: brightness(1.1) contrast(1.05);
}

.item:hover .overlay {
  opacity: 1;
}
/* =================================================================RESPONSIVE BREAKPOINTS===================================================================== */


/* Tablets */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .item {
    height: 260px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .item {
    height: 220px;
  }

  .overlay h2 {
    font-size: 16px;
  }

  .overlay a {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .item {
    height: 200px;
  }
}

/* Gallery Grid */
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
padding: 40px 60px;
}

/* ================= GALLERY SECTION ================= */

.section {
padding: 40px 80px;
text-align: center;
}

.section h2 {
font-size: 36px;
margin-bottom: 40px;
letter-spacing: 3px;
color: #fff;
}

.section h2:hover {

color: #1dd1a1;
}
.section h3 {
  text-align: center;
  font-size: 20px;
  color: #cccccc;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 40px;
}


/* Main grid */
.gallery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr); /* 4 images in row */
gap: 25px;

}

/* Images */
/* Gallery image base */
.gallery-grid img {
aspect-ratio: 1 / 1;  
overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid transparent;
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border 0.4s ease,
    filter 0.4s ease;
  cursor: pointer;
}

/* Hover effect */
.gallery-grid img:hover {
  transform: translateY(-10px) scale(1.05);   /* lift + zoom */
  border: 3px solid #1dd1a1;                  /* neon border */
  box-shadow: 0 15px 40px rgba(0, 255, 240, 0.4);
  filter: brightness(1.1) contrast(1.05);
}


/* Tablet */
@media (max-width: 1024px) {
.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

/* Mobile */
@media (max-width: 600px) {
.gallery-grid {
  grid-template-columns: 1fr;
}

.section {
  padding: 20px;
}
}
/* footer section */

.ad-footer{
    background:#000; /*black */
    color:#fff;
    padding:10px 10px;
    text-align:center;
    font-size:14px;
}

/* CONTAINER */
.ad-footer-container{
    max-width:1200px;
    margin:auto;
}

/* TEXT LINE */
.ad-footer-line{
    margin:6px 0;
    line-height:1.6;
}

/* LINKS */
.ad-footer a{
    color:#0bbf72;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.ad-footer a:hover{
    color:#1ed89a;
    text-decoration:underline;
}

/* DIVIDER */
.ad-divider{
    margin:0 8px;
    color:#fff;
}

/* LAST UPDATE */
.ad-last-update{
    color:#fff;
    font-size:13px;
}


/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    .ad-footer{
        font-size:13px;
        padding:20px 10px;
    }

    .ad-footer-line{
        display:block;
    }

    .ad-divider{
        display:none;
    }

    .ad-last-update{
        display:block;
        margin-top:5px;
    }
}


/* ================= FLOATING HOME ICON ================= */

.floating-home-icon {
position: fixed;
right: 25px;
bottom: 25px;
width: 46px;
height: 46px;
background: rgba(0,0,0,0.8);
border: 1px solid rgba(29,209,161,0.4);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #1dd1a1;
text-decoration: none;
box-shadow: 0 10px 25px rgba(0,0,0,0.7);
transition: 0.3s;
z-index: 999;
}

.floating-home-icon:hover {
background: #1dd1a1;
color: #000;
transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
.header {
  padding: 15px 30px;
}

.nav {
  gap: 20px;
}


.section {
  padding: 40px 30px;
}
}

.gallery img {
  width: 200px;
  margin: 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
}

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


.contact-section {
  padding: 80px 100px;
}

.contact-section h1{
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: white;   /* IMPORTANT */
}
.contact-section h1:hover{

  color:#1dd1a1;   /* IMPORTANT */
}
.contact-container {
  display: flex;
  gap: 80px;
}

/* FORM */
.contact-form {
  flex: 2;
}

.row {
  display: flex;
  gap: 30px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  position: relative;
}

.field.full {
  width: 100%;
}

label {
  margin-bottom: 10px;
  font-size: 16px;
   color: white;  
}

input, textarea {
  background: transparent;
  border: 1px solid #666;
  padding: 14px;
  color: #fff;
  font-size: 16px;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #1dd1a1;
}

button {
  background: #1dd1a1;
  border: none;
  padding: 14px 30px;
  color: #000;
  font-size: 16px;
  cursor: pointer;
}

/* RIGHT INFO */
.contact-info {
  flex: 1;
}

.contact-info h3 {
  margin-top: 20px;
  margin-bottom: 10px;
   color: white;  
}

.contact-info p {
 
  line-height: 1.6;
   color:  #1dd1a1;  
}

.green {
  color: #1dd1a1 !important;
}
/* ================= RESPONSIVE CONTACT ================= */

/* Tablet */
@media (max-width: 1024px) {
  .contact-section {
    padding: 60px 40px;
  }

  .contact-container {
    gap: 40px;
  }

  .contact-section h1 {
    font-size: 48px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-container {
    flex-direction: column;   /* STACK */
    gap: 40px;
  }

  .row {
    flex-direction: column;   /* Inputs one below another */
    gap: 20px;
  }

  .contact-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  input, textarea {
    font-size: 14px;
    padding: 12px;
  }

  button {
    width: 100%;   /* Full width button */
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .contact-section h1 {
    font-size: 28px;
  }

  label {
    font-size: 14px;
  }

  .field::after {
    font-size: 11px;
    bottom: -30px;
  }
}


/* TOOLTIP SYSTEM */
.field {
  position: relative;
}

.field::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  bottom: -35px;
  background: #1dd1a1;
  color: #000;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.3s;
  white-space: nowrap;
  pointer-events: none;
}

/* Show on focus */
.field:focus-within::after {
  opacity: 1;
  transform: translateY(0);
  
} 


/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-frame {
  width: 80vh;   /* height-based */
  height: 80vh;  /* same value */
  max-width: 80vw;
  max-height: 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* fills square */
  border: 4px solid #1dd1a1;
  border-radius: 10px;
  background: #000;
}
.lightbox-frame:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: #1dd1a1;   /* border changes color */
  box-shadow: 0 0 25px rgba(0,255,240,0.8);
}

.lightbox-frame:hover img {
  filter: brightness(1.1) contrast(1.05);
}

/* Close */
.close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 42px;
  color: white;
  cursor: pointer;
}

/* Arrows */
.nav {
  position: absolute;
  top: 50%;
  font-size: 60px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 20px;
}

.prev { left: 20px; }
.next { right: 20px; }


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Each card */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* One fixed-size card */
.gallery-grid .grid-item {
  width: 100%;
  height: 280px;          /* FORCE SAME HEIGHT */
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  border: 2px solid rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(255,255,255,0.6);

}

/* Image fills the card */
.gallery-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* MAGIC LINE */
}


/* Hover effect */
.gallery-grid .grid-item:hover img {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 255, 240, 0.4);
  filter: brightness(1.1) contrast(1.05);
}

/* Border stays aligned */
.gallery-grid .grid-item:hover {
  outline: 3px solid #1dd1a1;
  outline-offset: -3px;
}






	/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 2000;
  
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: white;
  transition: 0.4s;
}

/* Cross animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}


/* Default (Desktop large screens) */
.nav-menu {
  display: flex;
  gap: 25px;
}

.hamburger {
  display: none ;
}

/* Large tablets and small laptops */
@media (max-width: 1200px) {
  .nav-link {
    font-size: 16px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .nav-link {
    font-size: 15px;
  }

  .social {
    gap: 10px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    padding-left: 20px;
  }

  .nav-menu {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    background: #000;

    flex-direction: column;
    justify-content: center;
    align-items: center;

  

    display: none;
    z-index: 1500;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    font-size: 18px;
  }

  .social {
    display: none;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {

  .nav-link {
    font-size: 16px;
  }

  .hamburger {
    padding-left: 10px;
  }

}



/* ===============================
  events section
================================ */
.events-section{
    padding:40px 8%;
    background:#000;
	    align-items:center;

	
}
.section-title{
    text-align:center;
    font-size:32px;
    margin-bottom:50px;
    font-weight:600;
    color:#fff;
}
/* Main Event Box */
.event-row{
    background:#000;
    border:1px solid #e5e5e5;
    margin-bottom:50px;
}

/* Top Content Area */
.event-row{
    display:flex;
    align-items:center;
    gap:30px;
    padding:30px;
}

/* Reverse row */
.event-row.reverse{
    flex-direction:row-reverse;
}

/* Small Image / Video */
.event-media{
    width:130px;
    height:130px;
    flex-shrink:0;
    overflow:hidden;
}
 .event-media:hover{
   transform: translateY(-10px) scale(1.05);   /* lift + zoom */
  border: 3px solid #1dd1a1;                  /* neon border */
  box-shadow: 0 15px 40px rgba(0, 255, 240, 0.4);
  filter: brightness(1.1) contrast(1.05);
}
.event-media img,
.event-media video{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* Play icon default hidden */
.play-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:45px;
    color:#fff;
    background:rgba(0,0,0,0.6);
    padding:18px 22px;
    border-radius:50%;
    opacity:0;   /* hidden by default */

    pointer-events:none;
}

/* Show only on hover */
.video-box:hover .play-icon{
    opacity:1;
}
/* Text */
.event-text h2{
    font-size:15px;
    font-weight:600;
    color: #1dd1a1;
}
.event-text h2:hover {
  color: #1dd1a1;
}

.event-text p{
    display:block;      /* text visible hoil */
    margin-top:10px;
    color:#fff;
    line-height:1.6;
    font-size:13px;
	 max-width:650px;
}

/* Date Line (Add this HTML below event-text if needed) */
.event-date{
 
    padding:15px 30px;
    font-size:13px;
    color:#fff;
}


.popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
	 width:100%;
    height:100%;

}

.popup.show{
    display:flex;   /* IMPORTANT */
}
/* Content wrapper */
.popup-content{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}
  
  
   .event-media img:hover{
   transform: translateY(-10px) scale(1.05);   /* lift + zoom */
  border: 3px solid #1dd1a1;                  /* neon border */
  box-shadow: 0 15px 40px rgba(0, 255, 240, 0.4);
  filter: brightness(1.1) contrast(1.05);
} 
.popup-content img,
.popup-content video{
    max-width:90%;
    max-height:80vh;
    border-radius:20px;
	
}

.close-btn{
    position:absolute;
    top:30px;
    right:40px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}
/* ===============================
   RESPONSIVE DESIGN
================================ */

/* Tablet View */
@media (max-width: 992px){

    .event-row{
        gap:20px;
        padding:20px;
    }

    .event-media{
        width:110px;
        height:110px;
    }

    .event-text h2{
        font-size:14px;
    }

    .event-text p{
        font-size:13px;
    }
}


/* Mobile View */
@media (max-width: 768px){

    .events-section{
        padding:30px 5%;
    }

    .section-title{
        font-size:26px;
    }

    .event-row{
        flex-direction:column !important;   /* stack layout */
        text-align:center;
        padding:20px;
    }

    .event-media{
        width:100%;
        max-width:280px;
        height:200px;
    }

    .event-text{
        margin-top:15px;
    }

    .event-text h2{
        font-size:16px;
    }

    .event-text p{
        font-size:14px;
    }

    .event-date{
        padding:10px 0;
        font-size:13px;
    }
}


/* Small Mobile */
@media (max-width: 480px){

    .section-title{
        font-size:22px;
    }

    .event-media{
        height:180px;
    }

    .play-icon{
        font-size:35px;
        padding:14px 18px;
    }
}