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

body {
  background: #000;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 20px 60px;
  background: #000;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
  


}
.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 {
  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;
  }
}


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

body {
  background: #000;
  color: #fff;
}
/* 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 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 */
footer {
margin-top: 40px;
padding: 0px;
text-align: center;
background: #000;
color: #aaa;
}

.footer-contact p {
margin: 8px 0;
font-size: 14px;
}

.back-btn {
display: inline-block;
text-decoration: none;
background: #111;
color: #fff;
padding: 10px 18px;
border-radius: 4px;
font-size: 14px;
transition: 0.3s;
}

.back-btn:hover {
background: #444;
}



/* ================= 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: 60px;
  margin-bottom: 60px;
}

.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;
}

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;
}

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

.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: 86px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #000;

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

    gap: 25px;

    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;
  }

}
