@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #20B2AA;
  --secondary-color: #FF6B6B;
  --tertiary-color: #FFD700;
  --white-color: #FFFFFF;

  --background: #FFFFFF;
  --foreground: #0A2E33;
  --secondary: var(--secondary-color);
  --secondary-foreground: #FFFFFF;
  --accent: #EEE1CC;
  --accent-foreground: #003147;
  --muted: #FBF8F2;
  --muted-foreground: #4D6873;
  --card: #FFFFFF;
  --border: #EBE3D6;
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
  overflow-x: hidden;
}
h1, h2, h3, .font-serif { font-family: 'Lora', serif; }
h2 { font-size: 2rem; font-weight: 700; color: var(--secondary); margin: 0 0 .5rem; }
h3 { font-weight: 600; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--muted); }
.text-center { text-align: center; }
.section-head { max-width: 700px; margin: 0 auto 48px; }
.section-head p { color: rgba(10,46,51,.7); font-size: 1.1rem; margin-top: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px; border: none; font-weight: 600;
  font-size: .95rem; transition: transform .2s ease, opacity .2s ease;
}
.btn-primary { background: var(--primary-color); color: #fff; }
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-outline { background: var(--background); border: 1px solid var(--border); color: var(--secondary); }
.btn-outline:hover { background: var(--accent); }
.btn-block { width: 100%; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--muted); border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card-img { aspect-ratio: 4/3; background: var(--card); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { color: var(--secondary); font-size: 1.2rem; margin-bottom: 10px; }
.card-body p { color: rgba(10,46,51,.7); font-size: .9rem; line-height: 1.6; flex: 1; margin-bottom: 20px; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; row-gap: 10px; gap: 18px; padding: 16px 20px; max-width: 1280px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Lora', serif; font-weight: 700; font-size: 1.4rem; color: var(--secondary); flex-shrink: 0; }
.logo-badge { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; overflow: hidden; background: var(--primary-color); }
.logo-badge img { width: 100%; height: 100%; object-fit: cover; }
nav.main-nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
nav.main-nav a { font-size: .92rem; font-weight: 500; color: var(--foreground); white-space: nowrap; }
nav.main-nav a:hover { color: var(--primary-color); }
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; margin-left: auto; padding-left: 24px; }
.lang-toggle, .currency-toggle { border: 1px solid var(--border); background: #fff; border-radius: 999px; padding: 6px 14px; font-size: .85rem; font-weight: 600; white-space: nowrap; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; flex-shrink: 0; }
@media (max-width: 1100px) {
  nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 16px 20px; border-bottom: 1px solid var(--border); gap: 16px; }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-inner { padding: 12px 16px; gap: 10px; }
  .logo { font-size: 1.1rem; gap: 6px; }
  .logo-badge { width: 36px; height: 36px; }
  .header-actions { gap: 6px; margin-left: 0; padding-left: 0; }
  .lang-toggle, .currency-toggle { padding: 5px 10px; font-size: .75rem; }
  .header-actions .btn { padding: 8px 14px; font-size: .82rem; }
  .nav-toggle { font-size: 1.3rem; padding: 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; color: #fff; background-size: cover; background-position: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,49,71,.55), rgba(0,49,71,.85)); }
.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: 0 20px; text-align: center; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin: 0 0 16px; }
.hero p.subtitle { font-size: 1.15rem; opacity: .95; margin-bottom: 28px; }
.hero-badges { display: flex; justify-content: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; font-weight: 600; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid img { border-radius: 24px; }
.highlight-cards { display: flex; gap: 16px; margin-top: 24px; }
.highlight-card { flex: 1; background: var(--muted); border-radius: 16px; padding: 20px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Amenities ---------- */
.amenity-card { text-align: center; padding: 32px 20px; background: var(--muted); border-radius: 20px; }
.amenity-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--secondary); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.4rem; }

/* ---------- Places tabs ---------- */
.tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn { padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-weight: 600; font-size: .9rem; }
.tab-btn.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.place-card { position: relative; }
.place-card.special { outline: 2px solid var(--primary-color); }
.badge-star { position: absolute; top: 12px; right: 12px; background: var(--tertiary-color); color: #7a5c00; font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }

/* ---------- Affiliates ---------- */
.affiliate-card .card-img { aspect-ratio: 16/9; }
.affiliate-category { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--primary-color); margin-bottom: 6px; }
.affiliate-discount { display: inline-block; background: #FEE2E2; color: #DC2626; font-weight: 700; font-size: .85rem; padding: 4px 10px; border-radius: 8px; margin-bottom: 10px; }
.affiliate-contact { display: flex; flex-direction: column; gap: 4px; font-size: .85rem; color: rgba(10,46,51,.75); margin-bottom: 16px; }
.affiliate-contact a { color: inherit; }
.affiliate-contact a:hover { color: var(--primary-color); }
.affiliate-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.affiliate-actions .btn { flex: 1; min-width: 140px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 12px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; cursor: pointer; transition: transform .3s; }
.gallery-grid img:hover { transform: scale(1.02); }
.gallery-grid .span-2 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid .span-2 { grid-column: span 2; grid-row: span 1; } }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.85); display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-overlay img { max-height: 90vh; max-width: 90vw; border-radius: 12px; }
.modal-close { position: absolute; top: 24px; right: 32px; color: #fff; font-size: 2rem; background: none; border: none; }

/* ---------- Map ---------- */
.map-wrap { border-radius: 24px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.08); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Reviews ---------- */
.review-summary { text-align: center; margin-bottom: 32px; }
.stars { color: var(--tertiary-color); font-size: 1.3rem; }
.review-card { background: var(--muted); border-radius: 16px; padding: 24px; }
.review-card + .review-card { margin-top: 16px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1.05rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding-bottom: 20px; color: rgba(10,46,51,.75); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.chevron { transition: transform .2s; }

/* ---------- Booking ---------- */
.booking-box { background: var(--secondary); color: #fff; border-radius: 24px; padding: 48px; }
.booking-box h2 { color: #fff; }
.field label { display: block; font-size: .85rem; margin-bottom: 6px; opacity: .9; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08); color: #fff; font-family: inherit; font-size: .95rem;
}
.field input::placeholder { color: rgba(255,255,255,.6); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--secondary); color: rgba(255,255,255,.85); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
footer.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
footer.site-footer a { color: rgba(255,255,255,.8); }
footer.site-footer a:hover { color: var(--tertiary-color); }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }

/* ---------- Utility ---------- */
.hidden { display: none !important; }
.mt-2 { margin-top: 16px; }
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--secondary); color: #fff; padding: 14px 22px; border-radius: 10px; box-shadow: 0 4px 16px rgba(0,0,0,.2); z-index: 200; opacity: 0; transform: translateY(10px); transition: all .3s; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: #c0392b; }