/* =========================
   BASE / RESET
========================= */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f7e6ea;
  color: #5a3a3a;
  margin: 0;
  line-height: 1.6;
}

/* =========================
   HEADER / NAV
========================= */
header {
  position: sticky;
  top: 0;
  background-color: #f2d7dc;
  border-bottom: 1px solid #d6a77a;  
  padding: 15px 40px;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.header p {
  font-family: 'Lora', serif;
  font-size: 15px;       
  color: #6b4a4a;
  line-height: 1.8;
  margin-bottom: 18px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  width: 100%;
}

.brand img {
  max-height: 90px;
  display: block;
}

nav a {
  text-decoration: none;
  color: #5a3a3a;
  margin-left: 25px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
padding: 6px 10px;
  border-radius: 10px;
  -webkit-tap-highlight-color: transparent;

}

nav a:hover {
  background: rgba(139, 94, 94, 0.1);
}

nav a.active {
  opacity: 0.8;
  background: rgba(139,94,94,0.2);
  pointer-events: none;
  cursor: default;
}

nav a:active {
  transform: scale(0.95);
}

.book-btn {
  background-color: #8b5e5e;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px;
}

section {
  padding: 40px 20px;
  text-align: center;
}

/* =========================
   HERO
========================= */
.hero {
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero h1,
.hero p,
.hero a {
  position: relative;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background-color: #8b5e5e;
  color: white;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #a97474;
  transform: scale(1.05);
}

/* =========================
   SERVICES
========================= */
.services {
  background-color: #f2d7dc;
  border-radius: 10px;
}
.service-title {
  font-family: 'MonteCarlo', cursive;
  font-size: 42px;
  margin-top: 10px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.services h3 {
  font-family: 'Playfair Display', serif;
  font-size: 25px;     
  margin-top: 30px;
  margin-bottom: 15px;
  color: #5a3a3a;
  letter-spacing: 0.5px;
}

.services p {
  font-family: 'Lora', serif;
  font-size: 15px;       
  color: #6b4a4a;
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-list {
  margin: 10px 0 25px;
}

.service-list p {
  display: flex;
  font-family: 'Lora', serif;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e8cfd4;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.service-list p:hover {
  opacity: 0.7;
}

#services {
  scroll-margin-top: 140px; 
}


/* =========================
   TYPOGRAPHY
========================= */
h1, h2 {
  margin-bottom: 10px;
}

h3 {
  margin-top: 25px;
  margin-bottom: 5px;
}

p {
  max-width: 600px;
  margin: auto;
}

/* =========================
   GALLERY
========================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
  padding: 0 10px;
}

.gallery-title {
  font-family: 'MonteCarlo', cursive;
  font-size: 42px;
  margin-top: 10px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.gallery-title {
  margin-top: 10px;
  margin-bottom: 50px;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  cursor: pointer;
}

.gallery img:nth-child(odd) {
  transform: translateY(-6px);
}

.gallery img:nth-child(even) {
  transform: translateY(6px);
}

.gallery img:hover {
  transform: translateY(calc(var(--y-offset, 0px) - 3px)) scale(1.05);
}

.view-gallery-btn {
  margin-top: 20px;
  display: inline-block;
}

/* =========================
   ZOOM LIGHTBOX
========================= */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: background 0.4s ease, opacity 0.4s ease;
}

#lightbox.active {
  background: rgba(0,0,0,0.6);
  opacity: 1;
  pointer-events: auto;
}

#lightbox img {
  max-width: 90%;
  max-height: 85%;
  transform: scale(0.8);
  opacity:0'
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#lightbox.active img {
  transform: scale(0.9); 
  opacity:1;
}

/* =========================
   POLICY PAGE 
========================= */
.policy-page {
  padding: 30px 20px;
  background: #f7e6ea;
}

.policy-title {
  font-family: 'MonteCarlo', cursive;
  font-size: 42px;
  margin-top: 10px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.policy-title {
  margin-top: 10px;
  margin-bottom: 50px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.policy-card {
  position: relative;
  background: #fff9fb;
  padding: 40px 25px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139,94,94,0.12);
  border: 1px solid #f0cfd6;
  transition: 0.4s ease;
  font-family: 'Georgia', serif; 
}

.policy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(139,94,94,0.2);
  border-color: #d6a77a;
}

.policy-card p {
  margin: 10px 0;
  line-height: 1.8;           
  font-size: 16px;
  color: #6b4a4a;
}

.policy-card h2 {
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
}


.icon {
  background: #f2d7dc;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6a77a;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.icon img {
  width: 48px;
  height: 48px;
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: #8b5e5e;
  color: white;
  padding: 5px 5px;
  text-align: center;
}

footer .social-btn {
  display: inline-block;
  margin-top: 15px;
}

footer .social-icon,
footer .social-icon:visited {
  background: #f7e6ea;        
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d6a77a;
  transition: 0.3s;
  margin: 0 auto;
  outline: none;              
  -webkit-tap-highlight-color: transparent;
}

footer .social-icon img {
  width: 40px;
}

footer .social-icon:hover,
footer .social-icon:active {
  background: #d6a77a;        
  transform: scale(1.1);
}

footer p {
  margin-bottom: 1px;
  font-size: 15px;
  opacity: 0.9;
}

section {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .nav {
    flex-direction: column;           
    align-items: center;
  }

  nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;                         

  }

  nav a,
  .book-btn {
    margin: 2px;                  
    white-space: nowrap;         
    display: inline-block;
  }

  .book-btn {
    padding: 6px 14px;           
    font-size: 14px;
  }

  .container {
    padding: 20px;
  }

  #services {
    scroll-margin-top: 180px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

