* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: hsl(154, 49%, 8%);
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: rgba(15, 42, 16, 0.85);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LOGO IMAGE */
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links li a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.nav-links li a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #fad98b;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* NAV BUTTON */
.nav-btn {
  background: #fad98b;
  color: #0b1220;
  padding: 10px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 10px 30px rgba(250, 217, 139, 0.25);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 1.9rem;
  cursor: pointer;
  color: #fad98b;
}

.desktop-btn {
  display: inline-block;
}

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(251, 209, 125, 0.18), transparent 60%),
              linear-gradient(to right, hsl(154, 49%, 8%), hsl(154, 49%, 8%));
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(250, 217, 139, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: glowMove 6s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes glowMove {
  from { transform: translateX(-50%) translateY(0px); }
  to { transform: translateX(-50%) translateY(30px); }
}

.hero-content {
  max-width: 850px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 35px;
  line-height: 1.8;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fad98b;
  color: hsl(154, 49%, 8%);
  padding: 13px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0px 10px 30px rgba(250, 217, 139, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 13px 30px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  border-color: #fad98b;
  color: #fad98b;
  transform: translateY(-3px);
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: #94a3b8;
  font-size: 1.05rem;
}

/* GALLERY */
.gallery-section {
  padding: 90px 50px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1440px;
  margin: auto;
}

.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s ease;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.6);
  border-color: rgba(250, 217, 139, 0.4);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
  animation: fadeIn 0.4s ease;
}

.lightbox img {
  max-width: 92%;
  max-height: 86%;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  animation: zoomIn 0.4s ease;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 2.7rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.close-btn:hover {
  color: #fad98b;
  transform: scale(1.1);
}

/* CONTACT */
.contact-section {
  padding: 90px 30px;
  background: #0f2a13;
}

.contact-box {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  border-radius: 20px;
  width: 320px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
}

.contact-item i {
  font-size: 2.1rem;
  margin-bottom: 15px;
  color: #fad98b;
}

.contact-item:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 217, 139, 0.5);
  box-shadow: 0px 18px 50px rgba(0, 0, 0, 0.5);
}

.contact-item h3 {
  color: #fad98b;
  margin-bottom: 8px;
}

.contact-item p a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.contact-item p a:hover {
  color: #fad98b;
}

/* FOOTER */
footer {
  padding: 60px 20px;
  background: #091a10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.footer-content h3 {
  font-size: 1.8rem;
  color: #fad98b;
  margin-bottom: 10px;
}

.footer-content p {
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.social-links a {
  font-size: 1.4rem;
  color: #cbd5e1;
  transition: 0.3s;
}

.social-links a:hover {
  color: #fad98b;
  transform: translateY(-4px);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .navbar {
    padding: 16px 35px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-btn {
    display: none;
  }

  .logo img {
    height: 40px;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    right: 18px;
    width: 230px;
    flex-direction: column;
    background: rgba(15, 42, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    gap: 12px;
    display: none;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    padding: 10px;
    border-radius: 10px;
    display: block;
  }

  .nav-links li a:hover {
    background: rgba(255, 255,  255, 0.05);
  }

  .hero {
    padding: 110px 18px 70px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .gallery-section {
    padding: 80px 18px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 80px 18px;
  }

  .contact-item {
    width: 100%;
    max-width: 420px;
  }

  .close-btn {
    top: 15px;
    right: 20px;
    font-size: 2.3rem;
  }
}

@media (max-width: 420px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
