/* =========================================================================
   The Role Play Village — Stylesheet
   ========================================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=League+Spartan:wght@300;400;500;600&display=swap');

:root {
    --color-primary: #09B1AB;
    --color-secondary: #2F2B2B;
    --color-text: #3E3E3E;
    --color-accent: #D78BCD;
    --color-tertiary: #8E8E8E;
    --color-bg: #ffffff;
    --color-alt: #F5F1EA;
    --color-border: #E4E1DB;
    --color-coral: #F06D4F;
    --color-blue: #47B1E4;
    --color-yellow: #FDBF62;
    --color-pink-light: #FFF1FB;
    --color-teal-light: #EBF6F6;
    --color-yellow-light: #FFEFAB;

    --font-display: 'Fredoka', sans-serif;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'League Spartan', sans-serif;

    --container: 1320px;
    --radius: 20px;
    --radius-btn: 15px;

    --shadow-soft: 4px 4px 0 0 var(--color-accent);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.5em;
    color: var(--color-text);
    background: var(--color-bg);
    font-weight: 300;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    line-height: 1.1em;
    font-weight: 600;
}

h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 100px;
    line-height: 1em;
    letter-spacing: -3px;
}
h2 { font-size: 72px; letter-spacing: -2px; }
h3 { font-size: 48px; letter-spacing: -1px; line-height: 1.2em; }
h4 { font-size: 28px; font-weight: 500; line-height: 1.2em; }
h5 { font-size: 24px; font-weight: 500; line-height: 1.25em; }
h6 { font-size: 16px; font-weight: 500; line-height: 1.5em; }

p { margin-bottom: 1em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================== HEADER ===================== */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--color-border);
}
.header-inner {
    max-width: 1900px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 75px;
}
.site-logo img {
    max-height: 60px;
    width: auto;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
.main-nav a {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-secondary);
    transition: color .25s ease;
    position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-primary); }

.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: #fff !important;
    background: var(--color-primary);
    padding: 17px 40px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: background .3s ease, transform .25s ease;
    text-align: center;
    line-height: 1.2;
}
.btn:hover { background: var(--color-accent); transform: translateY(-2px); }
.btn-accent { background: var(--color-accent); }
.btn-accent:hover { background: var(--color-primary); }
.btn-coral { background: var(--color-coral); }
.btn-coral:hover { background: var(--color-accent); }
.btn-yellow { background: var(--color-yellow); color: var(--color-secondary) !important; }
.btn-yellow:hover { background: var(--color-coral); color: #fff !important; }
.btn-sm { padding: 12px 26px; font-size: 16px; }

.header-cta {
    padding: 14px 25px;
    background: var(--color-accent);
    font-size: 16px;
}
.header-cta:hover { background: var(--color-primary); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-toggle span { display: block; width: 28px; height: 3px; background: var(--color-secondary); margin: 5px 0; border-radius: 2px; }

/* ===================== HERO ===================== */
.hero {
    position: relative;
    padding: 80px 20px 100px;
    background: var(--color-bg);
    overflow: hidden;
}
.hero-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.hero-image {
    position: relative;
}
.hero-image .main-img {
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    animation: floaty 6s ease-in-out infinite;
}
.hero-image .floater {
    position: absolute;
    pointer-events: none;
}
.hero-image .float-star { top: -20px; right: 20px; width: 70px; animation: spin 10s linear infinite; }
.hero-image .float-bulb { bottom: -10px; left: 10px; width: 80px; animation: floaty 4s ease-in-out infinite; }
.hero-image .float-heart { top: 40px; left: -20px; width: 60px; animation: pulse 3s ease-in-out infinite; }
.hero-content h1 {
    color: var(--color-secondary);
    margin-bottom: 25px;
}
.hero-content h1 span { color: var(--color-primary); }
.hero-content p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--color-text);
}
.hero-cta-row { display: flex; gap: 15px; flex-wrap: wrap; }

@keyframes floaty {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes wiggle {
    0%,100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* ===================== INTRO SECTION ===================== */
.section {
    padding: 100px 20px;
    position: relative;
}
.section-narrow { padding: 80px 20px; }
.section-bg-cream { background: var(--color-alt); }
.section-bg-pink { background: var(--color-pink-light); }
.section-bg-teal { background: var(--color-teal-light); }
.section-bg-yellow { background: var(--color-yellow-light); }

.intro {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.eyebrow {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 15px;
    display: inline-block;
}
.intro h2 { margin-bottom: 25px; }
.intro p { font-size: 20px; line-height: 1.7; color: var(--color-text); }

/* ===================== FEATURE CARDS ===================== */
.feature-grid {
    max-width: var(--container);
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 6px 6px 0 0 var(--color-accent);
}
.feature-card:nth-child(1) { background: var(--color-pink-light); }
.feature-card:nth-child(2) { background: var(--color-yellow-light); }
.feature-card:nth-child(3) { background: var(--color-teal-light); }
.feature-card:nth-child(4) { background: #FFEDE5; }

.feature-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}
.feature-card h4 { margin-bottom: 18px; }
.feature-card ul {
    list-style: none;
    text-align: left;
    margin: 0 0 24px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
}
.feature-card ul li {
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.feature-card ul li:last-child { border: none; }

/* ===================== BIG BANNER ===================== */
.big-banner {
    padding: 120px 20px;
    position: relative;
    background-image: linear-gradient(rgba(9,177,171,0.78), rgba(215,139,205,0.78)), url('images/cobbled-village-entrance.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.big-banner h2 {
    color: #fff;
    max-width: 900px;
    margin: 0 auto 24px;
}
.big-banner p {
    color: #fff;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 19px;
    line-height: 1.7;
}

/* ===================== PLAY ZONES ===================== */
.zones-grid {
    max-width: var(--container);
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.zone-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 6px 24px rgba(47,43,43,0.06);
}
.zone-card:hover { transform: translateY(-6px); box-shadow: 4px 4px 0 0 var(--color-accent); }
.zone-card .img-wrap {
    aspect-ratio: 16/11;
    overflow: hidden;
}
.zone-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.zone-card:hover img { transform: scale(1.05); }
.zone-card .zone-meta {
    padding: 25px;
    text-align: center;
}
.zone-card h5 {
    color: var(--color-secondary);
    margin-bottom: 0;
}

.zones-cta { text-align: center; margin-top: 60px; }

/* ===================== FAQ ===================== */
.faq-wrap {
    max-width: 900px;
    margin: 50px auto 0;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 4px 4px 0 0 transparent;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item.open { border-color: var(--color-accent); box-shadow: 4px 4px 0 0 var(--color-accent); }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.faq-question .icon-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    flex: 0 0 auto;
    transition: transform .3s ease, background .3s ease;
}
.faq-item.open .icon-toggle { background: var(--color-accent); transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
}

/* ===================== EXCLUSIVE / CTA banner ===================== */
.cta-banner {
    background: var(--color-pink-light);
    border-radius: 30px;
    margin: 80px auto;
    max-width: 1200px;
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
    position: relative;
}
.cta-banner h2 { margin-bottom: 18px; }
.cta-banner p { font-size: 19px; margin-bottom: 26px; }
.cta-banner .img-side { position: relative; }
.cta-banner .img-side img { border-radius: 25px; width: 100%; }

/* ===================== BLOG ===================== */
.blog-grid {
    max-width: var(--container);
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    transition: transform .3s ease;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card .img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.blog-card img { width:100%; height:100%; object-fit: cover; }
.blog-card .meta { padding: 25px; }
.blog-card .date {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}
.blog-card h4 { margin-bottom: 14px; line-height: 1.3; }
.blog-card a.read-more {
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 15px;
}
.blog-card a.read-more:hover { color: var(--color-accent); }

.blog-cta { text-align: center; margin-top: 50px; }

/* ===================== INSTAGRAM ===================== */
.instagram-section { text-align: center; padding: 90px 20px; }
.instagram-section .handle {
    display: inline-block;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 12px;
}
.instagram-section h2 { margin-bottom: 16px; }
.instagram-grid {
    max-width: var(--container);
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.instagram-grid .ig-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 14px;
}
.instagram-grid .ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.instagram-grid .ig-item:hover img { transform: scale(1.08); }

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--color-secondary);
    color: #d8d4cf;
    padding: 80px 20px 30px;
}
.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
}
.footer-grid h4 {
    color: #fff;
    margin-bottom: 22px;
    font-size: 22px;
}
.footer-grid p, .footer-grid a, .footer-grid li {
    color: #d8d4cf;
    font-size: 16px;
    line-height: 1.8;
}
.footer-grid ul { list-style: none; }
.footer-grid ul li a:hover { color: var(--color-accent); }
.footer-brand img { max-width: 160px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 15px; line-height: 1.6; }
.footer-contact .contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact .contact-item .ico {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: var(--color-accent);
}
.footer-rating { margin-top: 26px; max-width: 110px; }

.footer-bottom {
    max-width: var(--container);
    margin: 50px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p { font-size: 14px; margin: 0; }
.social-row { display: flex; gap: 12px; }
.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: background .25s ease;
}
.social-row a:hover { background: var(--color-accent); }

/* ===================== PAGE BANNER ===================== */
.page-banner {
    text-align: center;
    padding: 120px 20px 90px;
    background: linear-gradient(180deg, var(--color-teal-light) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.page-banner .breadcrumbs {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-tertiary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.page-banner .breadcrumbs a { color: var(--color-accent); }
.page-banner h1 {
    font-size: 78px;
    line-height: 1em;
    color: var(--color-secondary);
}
.page-banner .subtitle {
    margin-top: 18px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 500;
}
.page-banner .deco-1, .page-banner .deco-2, .page-banner .deco-3 {
    position: absolute;
    pointer-events: none;
}
.page-banner .deco-1 { top: 30px; left: 5%; width: 60px; animation: floaty 5s ease-in-out infinite; }
.page-banner .deco-2 { top: 60px; right: 5%; width: 80px; animation: spin 14s linear infinite; }
.page-banner .deco-3 { bottom: 30px; left: 10%; width: 70px; animation: pulse 4s ease-in-out infinite; }

/* ===================== ABOUT/VILLAGE PAGE ===================== */
.intro-block {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px;
    text-align: center;
}
.intro-block p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 22px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
    background: var(--color-pink-light);
    padding: 100px 20px;
}
.testimonials .grid {
    max-width: var(--container);
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.testimonial {
    background: #fff;
    border-radius: 25px;
    padding: 45px;
    border: 1px solid var(--color-border);
    box-shadow: 4px 4px 0 0 var(--color-accent);
    position: relative;
}
.testimonial .quote {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 22px;
    line-height: 1.5;
    color: var(--color-secondary);
    margin-bottom: 25px;
}
.testimonial .who {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial .who .avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--color-yellow);
    color: #fff;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}
.testimonial .who h5 { margin-bottom: 4px; }
.testimonial .who small {
    color: var(--color-tertiary);
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

/* ===================== PARTY PACKAGES ===================== */
.package-banner {
    padding: 90px 20px 60px;
    background: var(--color-pink-light);
    text-align: center;
}
.package-banner h1 { color: var(--color-accent); margin-bottom: 20px; }
.package-banner p { max-width: 800px; margin: 0 auto 18px; font-size: 19px; }

.package-banner-img {
    max-width: 1200px;
    margin: 30px auto -100px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.theme-cards {
    padding: 160px 20px 100px;
    background: var(--color-alt);
}
.theme-cards .grid {
    max-width: var(--container);
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.theme-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: transform .3s ease;
}
.theme-card:hover { transform: translateY(-6px); }
.theme-card .img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.theme-card img { width: 100%; height: 100%; object-fit: cover; }
.theme-card .meta { padding: 30px; text-align: center; }
.theme-card h4 { margin-bottom: 15px; }
.theme-card .price {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    display: block;
}
.theme-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 22px;
    font-size: 16px;
    color: var(--color-text);
}
.theme-card ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}
.theme-card ul li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

/* ===================== FORMS ===================== */
.form-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 4px 4px 0 0 var(--color-accent);
    border: 1px solid var(--color-border);
}
.form-wrap h2 { margin-bottom: 14px; }
.form-wrap p { margin-bottom: 28px; color: var(--color-text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-secondary);
    background: var(--color-alt);
    transition: border-color .25s ease, background .25s ease;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--color-primary); background: #fff; }
.form-field label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-secondary);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

/* ===================== CONTACTS ===================== */
.contact-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info { padding-right: 20px; }
.contact-info h2 { margin-bottom: 22px; }
.contact-info p { font-size: 18px; line-height: 1.7; margin-bottom: 18px; color: var(--color-text); }
.contact-info .info-list { list-style: none; margin-top: 30px; }
.contact-info .info-list li {
    padding: 14px 0;
    border-bottom: 1px dashed var(--color-border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 17px;
    color: var(--color-secondary);
}
.contact-info .info-list .label {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    min-width: 110px;
}

.map-frame {
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    border: 1px solid var(--color-border);
    box-shadow: 4px 4px 0 0 var(--color-accent);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; min-height: 480px; }

/* ===================== EVENTS GRID ===================== */
.events-grid {
    max-width: var(--container);
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    transition: transform .3s ease;
}
.event-card:hover { transform: translateY(-6px); }
.event-card .img-wrap { aspect-ratio: 1/1; overflow: hidden; }
.event-card img { width: 100%; height: 100%; object-fit: cover; }
.event-card .meta { padding: 22px; text-align: center; }
.event-card h5 { margin-bottom: 8px; font-size: 18px; }
.event-card .when { font-size: 14px; color: var(--color-tertiary); margin-bottom: 14px; }
.event-card .price-tag {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 14px;
}

/* ===================== DECORATIVE FLOATING BG ===================== */
.float-bg {
    position: absolute;
    pointer-events: none;
    opacity: 0.85;
}

/* ===================== ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    h1 { font-size: 70px; letter-spacing: -2px; }
    h2 { font-size: 52px; }
    h3 { font-size: 36px; }
    h4 { font-size: 24px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .zones-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .theme-cards .grid { grid-template-columns: 1fr 1fr; }
    .testimonials .grid { grid-template-columns: 1fr; }
    .cta-banner { grid-template-columns: 1fr; padding: 50px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    body { font-size: 17px; }
    h1 { font-size: 42px; letter-spacing: -1px; }
    h2 { font-size: 32px; letter-spacing: -1px; }
    h3 { font-size: 26px; }
    h4 { font-size: 20px; }
    .header-inner { padding: 12px 18px; }
    .main-nav { display: none; position: absolute; top: 75px; left: 0; right: 0; background: #fff; padding: 24px; box-shadow: 0 8px 22px rgba(0,0,0,0.1); }
    .main-nav ul { flex-direction: column; gap: 18px; align-items: flex-start; }
    .main-nav.active { display: block; }
    .mobile-toggle { display: block; }
    .header-cta { padding: 10px 20px; font-size: 14px; }
    .hero { padding: 50px 20px 70px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-cta-row { justify-content: center; }
    .feature-grid { grid-template-columns: 1fr; }
    .zones-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .theme-cards .grid { grid-template-columns: 1fr; }
    .section { padding: 70px 20px; }
    .big-banner { padding: 80px 20px; }
    .form-wrap { padding: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .page-banner h1 { font-size: 48px; }
    .package-banner-img { margin-bottom: -50px; }
}
