/* ============================================================
   Art Story Events — Shared Stylesheet
   All pages link to this file. Put page-specific overrides
   in a <style> block inside the individual HTML file.
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --ivory:        #F8F4EB;
  --linen:        #FBE0D2;
  --sand:         #F0C8B8;
  --charcoal:     #1C1C1E;
  --charcoal-mid: #3A3A3C;
  --charcoal-soft:#6B6867;
  --blush:        #F0B8A6;
  --blush-deep:   #936763;
  --blush-pale:   #FBE0D2;
  --sage:         #9AAE9B;
  --gold:         #B8A07A;
  --white:        #FFFFFF;
  --milk:         #F8F4EB;
  --pink-lemon:   #FBE0D2;
  --blush-new:    #F0B8A6;
  --tangerine:    #FDBD89;
  --coral-new:    #FC8B6D;
  --grape:        #936763;
  --pop-coral:    #FC8B6D;
  --pop-yellow:   #FDBD89;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --max-w:        1200px;
  --section-pad:  100px 0;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--ivory); color: var(--charcoal); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.display  { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
.eyebrow  { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-new); }
.body-lg  { font-size: 1.1rem; line-height: 1.75; }
.muted    { color: var(--charcoal-soft); }
.section-eyebrow  { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-new); margin-bottom: 12px; }
.section-title    { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 500; line-height: 1.15; color: var(--charcoal); margin-top: 12px; }
.section-title em { color: var(--coral-new); font-style: italic; }
.section-subtitle { font-size: 1rem; color: var(--charcoal-soft); max-width: 540px; margin-top: 16px; line-height: 1.75; }
.section-header   { margin-bottom: 60px; }
.section-header.text-center { text-align: center; }
.eyebrow-pill { display: inline-block; background: var(--tangerine); color: var(--charcoal); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; width: fit-content; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn              { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 30px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.25s ease; cursor: pointer; }
.btn-primary      { background: var(--coral-new); color: var(--white); }
.btn-primary:hover { background: var(--grape); color: var(--white); }
.btn-outline      { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal-mid); }
.btn-outline-light:hover { background: var(--blush-new); color: var(--white); }
.btn-blush        { background: var(--coral-new); color: var(--white); }
.btn-blush:hover  { background: var(--grape); color: var(--white); }
.btn-tangerine    { background: var(--tangerine); color: var(--charcoal); }
.btn-tangerine:hover { background: var(--coral-new); color: var(--white); }

/* Header CTA (Get a Quote / Get Custom Proposal) — tangerine tone */
.nav-cta.btn-primary { background: var(--tangerine); color: var(--charcoal); }
.nav-cta.btn-primary:hover { background: var(--coral-new); color: var(--white); }

/* ── LANGUAGE TOGGLE ────────────────────────────────────────── */
.lang-toggle { display: flex; align-items: center; gap: 4px; background: var(--linen); border-radius: 20px; padding: 4px; margin-left: 16px; }
.lang-btn    { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em; padding: 4px 10px; border-radius: 16px; transition: all 0.2s; color: var(--charcoal-soft); cursor: pointer; border: none; background: transparent; font-family: var(--font-body); }
.lang-btn.active { background: var(--coral-new); color: var(--white); }

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────── */
.announcement-bar { background: var(--tangerine); color: var(--charcoal); text-align: center; padding: 10px 20px; font-size: 0.78rem; letter-spacing: 0.04em; }
.announcement-bar a { color: var(--grape); text-decoration: underline; text-underline-offset: 3px; }
.announcement-bar a:hover { color: var(--charcoal); }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav { position: sticky; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 5%; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(248,244,235,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.3s ease; }
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--charcoal); letter-spacing: -0.01em; display: flex; flex-direction: column; line-height: 1; }
.nav-logo img { height: 60px; width: auto; display: block; }
.nav-logo span { font-size: 0.55rem; font-family: var(--font-body); letter-spacing: 0.22em; text-transform: uppercase; color: var(--charcoal-soft); margin-top: 2px; }
.nav-right { display: flex; align-items: center; gap: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em; color: var(--charcoal-mid); transition: color 0.2s; position: relative; text-decoration: none; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--blush-deep); transition: width 0.25s ease; }
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 20px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }

/* ── DROPDOWN ───────────────────────────────────────────────── */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a .drop-arrow { display: inline-block; margin-left: 4px; font-size: 0.6rem; transition: transform 0.2s; vertical-align: middle; }
.nav-links .has-dropdown:hover > a .drop-arrow { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: #fff; border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.10); min-width: 230px; padding: 8px 0; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; z-index: 200; }
.dropdown-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-links .has-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 0.82rem; color: var(--charcoal-mid); transition: background 0.15s, color 0.15s; white-space: nowrap; letter-spacing: 0; }
.dropdown-menu a:hover { background: var(--blush-pale); color: var(--blush-deep); }
.dropdown-menu a::after { display: none !important; }

/* ── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: rgba(248,244,235,0.98); backdrop-filter: blur(12px); z-index: 999; padding: 32px 5%; overflow-y: auto; flex-direction: column; gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; font-size: 0.88rem; font-weight: 500; color: var(--charcoal); padding: 11px 0; border: none; letter-spacing: 0.01em; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--coral-new); }

/* Mobile menu — Services sub-menu (collapsible) */
.mobile-menu .has-sub { display: flex; flex-direction: column; }
.mobile-menu .has-sub > .sub-toggle { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.mobile-menu .has-sub > .sub-toggle::after { content: '＋'; font-size: 1rem; font-weight: 300; color: var(--charcoal-soft); transition: transform 0.25s; }
.mobile-menu .has-sub.open > .sub-toggle::after { content: '－'; }
.mobile-menu .sub-links { display: none; flex-direction: column; padding-left: 14px; border-left: 2px solid var(--blush-pale); margin: 4px 0 8px 4px; }
.mobile-menu .has-sub.open .sub-links { display: flex; }
.mobile-menu .sub-links a { font-size: 0.82rem; padding: 8px 0; color: var(--charcoal-mid); }
.mobile-menu .sub-links a:hover { color: var(--coral-new); }

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding: var(--section-pad); background: var(--milk); }

/* ── FADE ANIMATIONS ────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }

/* ── FAQ ACCORDION ──────────────────────────────────────────── */
.faq { padding: var(--section-pad); background: var(--pink-lemon); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 48px; border-top: 1px solid var(--sand); }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 1rem; font-weight: 500; color: var(--charcoal); text-align: left; gap: 16px; cursor: pointer; background: none; border: none; font-family: var(--font-body); }
.faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--blush-deep); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 0.92rem; color: var(--charcoal-soft); line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--grape); padding: 64px 5% 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.85rem; color: #ffffff; line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-col-title { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: #ffffff; display: block; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span { font-size: 0.85rem; color: #ffffff; transition: color 0.2s; }
.footer-links a:hover { color: var(--tangerine); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 0.75rem; color: #ffffff; flex-wrap: wrap; gap: 12px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.social-link:hover { border-color: var(--tangerine); color: var(--tangerine); }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9000; background: #25D366; color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ── FORMS (shared across enquiry/contact sections) ─────────── */
.form-title    { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--charcoal); margin-bottom: 28px; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group    { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: span 2; }
.form-label    { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-mid); }
.form-input, .form-select, .form-textarea { padding: 11px 14px; border: 1.5px solid var(--sand); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); background: var(--ivory); transition: border-color 0.2s; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--coral-new); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-submit   { width: 100%; padding: 14px; background: var(--tangerine); color: var(--charcoal); font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border: none; border-radius: 30px; cursor: pointer; transition: background 0.25s; margin-top: 8px; }
.form-submit:hover { background: var(--coral-new); color: var(--white); }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner, .cta-section { background: linear-gradient(135deg, var(--pink-lemon) 0%, #F5CCBC 50%, #F9A68E 100%); text-align: center; padding: 80px 5%; position: relative; overflow: hidden; }
.cta-banner::before, .cta-section::before { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: var(--pop-coral); border-radius: 50%; filter: blur(100px); opacity: 0.15; pointer-events: none; }
.cta-banner::after, .cta-section::after { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: var(--pop-yellow); border-radius: 50%; filter: blur(80px); opacity: 0.12; pointer-events: none; }
.cta-banner-title, .cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; color: var(--charcoal); line-height: 1.1; margin: 12px 0 16px; }
.cta-banner-title em, .cta-title em { color: var(--grape); font-style: italic; }
.cta-banner-sub, .cta-sub { font-size: 1rem; color: var(--charcoal-mid); max-width: 520px; margin: 0 auto 32px; line-height: 1.75; }
.cta-banner-actions, .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.whatsapp-note { margin-top: 24px; font-size: 0.82rem; color: var(--charcoal-soft); position: relative; z-index: 1; }
.whatsapp-note a { color: var(--blush-deep); }

/* ── CASE STUDY / WORK CARDS (shared style) ─────────────────── */
.work-card, .case-study-card { border-radius: 20px; overflow: hidden; position: relative; }
.work-card-img, .case-study-card-img { aspect-ratio: 4/3; overflow: hidden; }
.work-card-img img, .case-study-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-card:hover .work-card-img img, .case-study-card:hover .case-study-card-img img { transform: scale(1.05); }
.work-card-body, .case-study-card-body { padding: 20px 0; }
.work-client, .case-study-client { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-new); margin-bottom: 6px; }
.work-title, .case-study-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--charcoal); margin-bottom: 8px; }
.work-meta, .case-study-description { font-size: 0.8rem; color: var(--charcoal-soft); }

/* ── WORKSHOP CARDS (shared style) ──────────────────────────── */
.workshop-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.workshop-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(252,139,109,0.16); }
.workshop-card-img { aspect-ratio: 4/3; overflow: hidden; }
.workshop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.workshop-card:hover .workshop-card-img img { transform: scale(1.05); }
.workshop-card-body { padding: 18px 20px; }
.workshop-card-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; line-height: 1.2; }
.workshop-card-desc { font-size: 0.8rem; color: var(--charcoal-soft); line-height: 1.6; margin-bottom: 12px; }
.workshop-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { background: var(--milk); color: var(--coral-new); padding: 3px 10px; border-radius: 16px; font-size: 0.70rem; font-weight: 500; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dropdown-menu { display: none; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .lang-toggle { margin-left: 8px; }
  .lang-btn { padding: 3px 7px; font-size: 0.68rem; }
  .announcement-bar { font-size: 0.72rem; padding: 8px 12px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}
