/* =====================
   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/hero.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;
}

/* =====================
   ABOUT SECTION
===================== */
.about-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, var(--pink-soft), var(--white));
}

.about-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* =====================
   HIGHLIGHT / VALUES SECTION
===================== */
.highlight-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--navy), #27355a);
  color: var(--white);
  text-align: center;
}

.highlight-section h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.highlight-section p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e5e7eb;
}

/* =====================
   GALLERY SECTION
===================== */
.photo-gallery {
  background: var(--neutral-bg);
  padding: 3rem 1rem;
  text-align: center;
}

.photo-gallery h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.carousel-item:hover {
  transform: scale(1.03);
}

.carousel-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--white);
  opacity: 0;
  transition: 0.4s ease;
}

.carousel-item:hover .caption {
  opacity: 1;
}

.view-more-btn {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  background: var(--pink-main);
  color: var(--navy);
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* =====================
   CONTACT SECTION
===================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 1200px;
  margin: 5rem auto;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-main));
}

.contact-info {
  padding: 3.5rem;
  color: var(--navy);
}

.contact-info h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =====================
   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
===================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    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;
  }
}
