/* =====================
   ROOT VARIABLES
===================== */
:root {
  --pink-light: #ffd1dc;
  --pink-main: #f6a5c0;
  --pink-soft: #fff1f4;
  --navy: #1f2a44;
  --navy-dark: #162033;
  --dark: #0e0f10;
  --gray: #555;
  --white: #ffffff;
  --neutral-bg: #f8fafc;
}

/* =====================
   GLOBAL STYLES
===================== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

a {
  text-decoration: none;
}

/* =====================
   NAVBAR (STICKY)
===================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 16px;
  background: linear-gradient(to right, var(--pink-light), var(--pink-main));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  height: 70px;
  margin-right: 10px;
}

/* Nav Links */
.nav-links a {
  color: var(--navy);
  margin-left: 18px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(31, 42, 68, 0.15);
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  height: 100vh;
  background: url("../images/gallery-1.webp") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  color: var(--white);
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-btn {
  background: var(--navy);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
}

/* ================================
   PHOTO GALLERY
================================ */
.photo-gallery-grid {
  padding: 3rem 1rem;
  background: var(--bg-section);
  text-align: center;
}

.photo-gallery-grid h2 {
  font-size: 2rem;
  color: var(--primary);
}

.gallery-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.gallery-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   FOOTER
===================== */
footer {
  background: linear-gradient(to right, var(--pink-main), var(--pink-light));
  color: var(--navy);
  text-align: center;
  padding: 1rem;
  font-weight: bold;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    text-align: center;
  }

  .nav-links a {
    color: var(--white);
    padding: 15px;
    margin: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .hero {
    height: 40vh;
  }
  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .about-wrapper {
    flex-direction: column;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .map iframe {
    height: 320px;
  }
}
