/* ================================
   Hotel Aerocity Purple Orchid Blog Styles
   Shared across all blog posts
================================ */

/* Variables */
:root{
  --brand:#6c3483; 
  --brand-2:#5a2b6f; 
  --accent:#ffb703;
  --ink:#222; 
  --muted:#555; 
  --ring:#eadbf2;
  --bg:#faf7fb; 
  --card:#ffffff; 
  --shadow:0 12px 30px rgba(108,52,131,.18);
}

*{box-sizing:border-box}
html,body{margin:0}
body{
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #efe7f5 0%, transparent 50%),
    radial-gradient(900px 600px at 110% -10%, #f6effb 0%, transparent 50%),
    var(--bg);
  line-height:1.65;
}

/* Header */
header.hero{
  background:linear-gradient(120deg, var(--brand), var(--brand-2));
  color:#fff; 
  padding:62px 16px 36px;
  border-bottom:1px solid rgba(255,255,255,.22);
}
.container{max-width:980px; margin:0 auto; padding:0 16px}
.kicker{letter-spacing:.12em; opacity:.9; font-weight:600; font-size:.85rem}
h1{font-family:"Playfair Display",serif; font-size:clamp(1.9rem,3.2vw,2.6rem); margin:.35rem 0 .25rem}
.sub{opacity:.98; max-width:840px}

.meta-bar{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.pill{
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.25);
  font-size:.85rem; font-weight:500;
}

/* Hero image */
.hero-img{width:100%; aspect-ratio:16/7; object-fit:cover; margin:-18px auto 0; display:block}

/* Article */
main.article{max-width:840px; margin:24px auto 64px; padding:0 16px}
.card{
  background:var(--card); border:1px solid var(--ring);
  border-radius:18px; box-shadow:var(--shadow);
  margin-top:-64px;
}
.content{padding:22px 20px}
.content h2{font-size:1.35rem; margin:22px 0 10px}
.content p{margin:12px 0; color:#2b2b35}
.list{padding-left:22px}
.badge{
  display:inline-block; background:#ffe9a8; color:#7a4d00; font-size:.78rem;
  padding:4px 10px; border-radius:999px; margin-left:8px
}
.rating{font-weight:700; color:var(--brand)}
a{color:var(--brand); text-decoration:none; font-weight:600}
a:hover{color:#4a225d; text-decoration:underline}

/* CTAs */
.cta{
  display:inline-flex; align-items:center; gap:8px; margin-top:12px; padding:12px 18px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  color:#fff; border-radius:12px; text-decoration:none; font-weight:700
}
.cta-whatsapp{
  display:inline-block;
  background:#25D366; color:#fff;
  font-weight:bold; padding:12px 20px;
  border-radius:8px; text-decoration:none; font-size:16px;
  margin-top:12px;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  transition:background .3s ease;
}
.cta-whatsapp:hover {background:#1ebe5d}

/* FAQ Styling */
.faq-section {margin:40px 0; padding:20px; border:1px solid var(--ring); border-radius:16px; background:var(--card); box-shadow:var(--shadow);}
.faq-section h2 {margin-bottom:16px; font-size:1.4rem;}
details {margin-bottom:14px; border:1px solid var(--ring); border-radius:8px; padding:12px; background:var(--bg);}
summary {cursor:pointer; font-weight:600;}
details[open] {background:#f8f4fc;}


/* Footer */
footer.page{max-width:840px;margin:32px auto 60px; text-align:center; color:var(--muted)}
