/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
html { scroll-behavior: smooth; }
:root { scroll-padding-top: 110px; }

* { box-sizing: border-box; }

body{
  margin:0;
  font-family:'Inter', sans-serif;
  line-height:1.75;
  background: url('images/background.jpg') center/cover fixed no-repeat;
  color:#111;
  padding-top:110px; /* space for fixed header */
}

@media (max-width: 900px){
  body{ padding-top:85px; }
  :root{ scroll-padding-top:85px; }
}

/* Container */
.container{
  max-width:1300px;
  margin:0 auto;
  padding:0 15px;
}

/* --------------------------------------------------
   HEADER / NAVBAR
-------------------------------------------------- */
header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:5000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding:8px 0;
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}

.logo img{ height:85px; width:auto; }
.logo-text{
  font-size:22px;
  font-weight:800;
  color:#d70000;
}

/* Desktop links */
.nav-links{
  display:flex;
  gap:32px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-weight:650;
  font-size:17px;
}

.nav-links a:hover{ color:#d70000; }

/* Hamburger button (hidden on desktop) */
.menu-toggle{
  display:none;
  background:none;
  border:0;
  cursor:pointer;
  padding:10px;
  border-radius:10px;
  flex-direction:column;
  gap:4px;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#111;
  border-radius:3px;
}

/* Mobile nav */
@media (max-width: 900px){
  .logo img{ height:44px; }
  .logo-text{ font-size:16px; }

  .menu-toggle{ display:flex; }

  .nav-links{
    display:none;                 /* hidden until .active */
    position:absolute;
    top: calc(100% + 10px);
    left:12px;
    right:12px;
    background:#abb6e2;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius:14px;
    padding:10px 0;
    flex-direction:column;
    gap:0;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  }

  .nav-links.active{ display:flex; }

  .nav-links li{ text-align:center; padding:10px 0; }
  .nav-links a{ font-size:16px; }
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero{
  height:85vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:40px;
  position:relative;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.55);
}

.hero *{ position:relative; z-index:1; }

.hero-title{
  font-size:55px;
  font-weight:850;
  color:#fff;
  line-height:1.05;
  margin:0 0 12px;
}

.hero-title span{
  display:block;
  margin-top:6px;
}

.hero p{
  font-size:22px;
  color:#eee;
  max-width:520px;
  margin:0 0 18px;
}

/* Mobile hero */
@media (max-width: 900px){
  .hero{
    height:auto;
    padding:70px 16px 40px;
  }
  .hero-title{ font-size:34px; line-height:1.1; }
  .hero p{ font-size:16px; }
}

/* Buttons */
.btn{
  display:inline-block;
  padding:12px 26px;
  background:#d70000;
  color:#fff;
  border-radius:12px;
  font-weight:750;
  text-decoration:none;
}

.btn:hover{ filter:brightness(0.95); }

.whatsapp-btn{ background:#25D366; }
.whatsapp-btn:hover{ background:#1ebe5d; }

/* --------------------------------------------------
   SECTIONS + ANIMATION
-------------------------------------------------- */
.section{
  max-width:1200px;
  margin:60px auto 40px;
  padding:55px 40px;
  background: rgba(247,239,239,0.92);
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.05);
  box-shadow:0 10px 32px rgba(0,0,0,0.08);

  /* animation start */
  opacity:0;
  transform: translateY(18px);
  transition: 0.7s ease;
}

.section.show{
  opacity:1;
  transform: translateY(0);
}

/* Mobile sections: wider + less padding + smaller fonts */
@media (max-width: 900px){
  .section{
    width: calc(100% - 24px);
    margin:22px auto;
    padding:22px 16px;
    border-radius:16px;
  }
}

.section h2{
  font-size:40px;
  font-weight:850;
  margin:0 0 24px;
  letter-spacing:-0.02em;
  line-height:1.15;
}

@media (max-width: 900px){
  .section h2{ font-size:26px; margin-bottom:14px; }
}

.section h2::after{
  content:"";
  width:60px;
  height:4px;
  background:#d70000;
  display:block;
  margin-top:10px;
}

.section p{
  font-size:18px;
  line-height:1.8;
  color:#3b3b3b;
  margin:0 0 16px;
  max-width:72ch;
}

@media (max-width: 900px){
  .section p{ font-size:16px; line-height:1.55; }
}

.section h3{
  font-size:20px;
  font-weight:750;
  margin:0 0 10px;
  color:#111;
}

/* Text-only lists */
.section ul{
  margin:14px 0 0;
  padding-left:0;
  list-style:none;
}

.section li{
  margin-bottom:8px;
  font-size:18px;
  line-height:1.55;
  color:#0b0b0b;
  font-weight:500;
  max-width:72ch;
}

@media (max-width: 900px){
  .section li{ font-size:16px; line-height:1.55; }
}

/* Cards + grids */
.card{
  background: rgba(255,255,255,0.78);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:26px;
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
}

@media (max-width: 900px){
  .card{ padding:18px; border-radius:16px; }
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:22px;
}

@media (max-width: 900px){
  .grid-3{ grid-template-columns:1fr; gap:14px; }
}

/* Pills */
.pill-container{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

.pill{
  background: rgba(255,255,255,0.75);
  border:1px solid rgba(0,0,0,0.08);
  border-radius:999px;
  padding:10px 16px;
  font-weight:650;
}

/* Booking layout */
.booking-grid{
  display:grid;
  grid-template-columns:1.4fr 0.9fr;
  gap:28px;
  margin-top:28px;
}

@media (max-width: 900px){
  .booking-grid{ grid-template-columns:1fr; }
}

.booking-card, .whatsapp-card{
  background: rgba(255,255,255,0.75);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:26px;
  box-shadow:0 10px 28px rgba(0,0,0,0.06);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

@media (max-width: 900px){
  .form-grid{ grid-template-columns:1fr; }
}

.input-group{ display:flex; flex-direction:column; gap:8px; }
.input-group label{ font-size:14px; font-weight:700; color:#222; }

.input-group input,
.input-group select,
.input-group textarea{
  width:100%;
  border:1px solid rgba(0,0,0,0.12);
  border-radius:12px;
  padding:12px 14px;
  font-size:16px;
  background: rgba(255,255,255,0.95);
  outline:none;
}

.input-group textarea{ min-height:120px; resize:vertical; }
.input-group.full{ grid-column:1 / -1; }

.btn-wide{
  width:100%;
  text-align:center;
  margin-top:14px;
  padding:14px 18px;
  border-radius:12px;
}

/* FAQ */
.faq-list{ display:grid; gap:14px; margin-top:18px; }

.faq-item{
  background: rgba(255,255,255,0.75);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:16px;
  padding:14px 18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.faq-item summary{
  cursor:pointer;
  font-weight:750;
  font-size:18px;
  color:#111;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item summary::after{
  content:"+";
  font-size:22px;
  font-weight:800;
  color:#d70000;
}

.faq-item[open] summary::after{ content:"–"; }

.faq-answer{
  margin-top:10px;
  color:#333;
  line-height:1.75;
  font-size:17px;
}

/* Footer */
.footer{
  text-align:center;
  padding:25px 0;
  background:#fff;
  border-top:1px solid #eee;
  font-size:15px;
  color:#555;
}
header { z-index: 99999 !important; }
.hero::before { pointer-events: none !important; }

/* =========================
   GALLERY (FIXED)
========================= */

/* Main grid */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 14px;
  max-width: 500px;
  margin: 18px auto 0;
}

/* Preview on home */
.preview-grid{
  max-width: 420px;
}

/* Item box */
.gallery-item{
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

/* Images */
.gallery-item img{
  width: 100%;
  height: 150px;
  object-fit: cover; /* no stretch */
  display: block;
}

/* Desktop */
@media (min-width: 900px){
  .gallery-item img{
    height: 170px;
  }
}

/* Mobile */
@media (max-width: 480px){
  .gallery-grid{
    max-width: 95%;
  }

  .gallery-item img{
    height: 120px;
  }
}
/* ---- Gallery final override (mobile + desktop) ---- */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin: 18px auto 0;
}

.gallery-item img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

@media (max-width: 480px){
  .gallery-grid{
    max-width: 94%;
    gap: 10px;
  }
  .gallery-item img{
    height: 110px; /* small on iPhone */
  }
}
.site-footer {
  padding: 30px 20px;
  border-top: 1px solid #e5e5e5;
  background: #fafafa;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 14px;
  text-decoration: none;
}

.footer-social a i {
  font-size: 16px;
}

.footer-social a:hover {
  color: #000;
}

/* base icon look */
.footer-social i {
  font-size: 18px;
}

/* brand colors */
.footer-social a[aria-label="Facebook"] i {
  color: #1877F2; /* Facebook blue */
}

.footer-social a[aria-label="Google Maps"] i {
  color: #EA4335; /* Google red */
}

/* optional: keep text neutral */
.footer-social span {
  color: #555;
}
.footer-social a:hover span {
  color: inherit;
}

/* Force brand colors (mobile-safe) */
.footer-social a[aria-label="Facebook"] i {
  color: #1877F2 !important;
}

.footer-social a[aria-label="Google Maps"] i {
  color: #EA4335 !important;
}
.footer {
  text-align: center;
}
.site-footer {
  text-align: center;
}

/* Mobile menu safety: always on top */
@media (max-width: 900px){
  .menu-toggle{
    position: relative;
    z-index: 999999;
  }
  .nav-links{
    z-index: 999999;
  }
}
@media (max-width: 900px){
  .nav-links.active{
    display:flex !important;
  }
}
@media (max-width: 900px){
  header { z-index: 999999 !important; }
  .menu-toggle { z-index: 999999 !important; position: relative; }
}
