/*
Theme Name: Schloss Gültz
Theme URI: https://www.schloss-gueltz.de
Author: Projektentwicklungsgesellschaft Schloss Gültz UG
Author URI: https://www.schloss-gueltz.de
Description: Elegantes Premium-Theme für Schloss Gültz - Historisches Herrenhaus und exklusive Eventlocation in Mecklenburg-Vorpommern.
Version: 1.0.0
Tested up to: 6.9
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: schloss-gueltz
Tags: one-column, custom-menu, featured-images, full-site-editing, block-patterns, wide-blocks

Schloss Gültz WordPress Theme - Kompatibel mit WordPress 6.9
*/

/* ══════════════════════════════════════════════════════════════
   SCHLOSS GÜLTZ — LUXURY ESTATE THEME
   ══════════════════════════════════════════════════════════════ */

:root {
    --noir: #0a0a09;
    --noir-soft: #141412;
    --noir-medium: #1e1e1c;
    --charcoal: #282826;
    --slate: #4a4a45;
    --ivory: #fdfcf9;
    --cream: #f8f6f1;
    --parchment: #f0ede5;
    --sand: #dcd8cc;
    --stone: #a8a49a;
    --gold: #c4a052;
    --gold-bright: #d4b366;
    --gold-pale: #e6d4a0;
    --gold-dark: #9a7d3a;
    --burgundy: #4a1520;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Garamond, serif;
    --font-modern: 'Outfit', system-ui, sans-serif;
    --font-regal: 'Cinzel', 'Times New Roman', serif;
    --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --duration-fast: 0.3s;
    --duration-medium: 0.6s;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { 
    scroll-behavior: smooth; 
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-modern);
    font-weight: 300;
    background: var(--noir);
    color: var(--ivory);
    line-height: 1.8;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--noir);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(180deg, var(--gold-dark), var(--gold));
    border-radius: 4px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ═══ LOADER ═══ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--noir);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    transition: opacity 1.2s var(--ease-out-expo), visibility 1.2s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    opacity: 0;
    transform: translateY(10px);
    animation: loaderFadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.loader-line {
    width: 180px;
    height: 1px;
    background: rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: loaderProgress 2.2s var(--ease-out-expo) forwards;
}

.loader-text {
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--stone);
    opacity: 0;
    animation: loaderFadeIn 1s 0.8s forwards;
}

@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes loaderProgress { to { width: 100%; } }

/* ═══ CURSOR ═══ */
.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s var(--ease-luxe);
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: scale(2.5);
    background: var(--gold);
    opacity: 0.3;
}

@media (hover: none) { .cursor { display: none; } }

/* ═══ NAVIGATION ═══ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.8rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.nav.scrolled {
    padding: 1rem 3.5rem;
    background: rgba(10, 10, 9, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(196, 160, 82, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(196,160,82,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--duration-fast);
    background: rgba(196,160,82,0.05);
}

.nav-logo:hover .nav-logo-icon {
    background: var(--gold);
    transform: rotate(8deg) scale(1.05);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.nav-logo-text span { color: var(--gold); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-link {
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
    transition: color var(--duration-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1.25rem;
    right: 1.25rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--duration-fast);
}

.nav-link:hover { color: var(--ivory); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
    margin-left: 1rem;
    padding: 0.85rem 1.8rem;
    border: 1px solid rgba(196,160,82,0.4);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--duration-fast);
    border-radius: 2px;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--noir);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.nav-toggle span {
    width: 28px;
    height: 1px;
    background: var(--gold);
    transition: all var(--duration-fast);
}

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.05);
    transform: scale(1.15);
    animation: heroZoom 25s var(--ease-out-expo) forwards;
}

@keyframes heroZoom { to { transform: scale(1.02); } }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: 
        linear-gradient(180deg, rgba(10,10,9,0.4) 0%, rgba(10,10,9,0) 30%, rgba(10,10,9,0.2) 60%, rgba(10,10,9,0.95) 100%),
        radial-gradient(ellipse at 50% 30%, rgba(196,160,82,0.06) 0%, transparent 60%);
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.6rem;
    background: rgba(196, 160, 82, 0.08);
    border: 1px solid rgba(196, 160, 82, 0.2);
    border-radius: 100px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-out-expo) 0.5s forwards;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseDot 2.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-out-expo) 0.7s forwards;
}

.hero-title-pre {
    display: block;
    font-family: var(--font-elegant);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-style: italic;
    letter-spacing: 0.3em;
    color: var(--stone);
    margin-bottom: 1rem;
}

.hero-title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 12rem);
    letter-spacing: 0.05em;
    line-height: 0.9;
    background: linear-gradient(160deg, var(--ivory), var(--cream), var(--gold-pale), var(--gold), var(--gold-dark));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-title-sub {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-regal);
    font-size: clamp(0.65rem, 1.2vw, 0.85rem);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(196,160,82,0.6);
    margin-top: 2rem;
}

.hero-title-sub::before,
.hero-title-sub::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.hero-description {
    font-family: var(--font-elegant);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: var(--sand);
    max-width: 650px;
    margin: 0 auto 3.5rem;
    line-height: 2;
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-out-expo) 0.9s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeSlideUp 1s 1.1s forwards;
}

.hero-stat { text-align: center; }

.hero-stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--gold-dark), transparent);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 1s 1.3s forwards;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeSlideUp 1s 1.5s forwards;
}

.hero-scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    font-family: var(--font-modern);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all var(--duration-fast);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.btn-primary {
    background: linear-gradient(145deg, var(--gold), var(--gold-dark));
    color: var(--noir);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196,160,82,0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-arrow { transition: transform var(--duration-fast); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ═══ CONTAINER ═══ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* ═══ SECTIONS ═══ */
section { padding: 8rem 0; }

.section-light {
    background: var(--cream);
    color: var(--charcoal);
}

.section-dark { background: var(--noir-soft); }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-regal);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold-dark);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.section-light .section-title { color: var(--charcoal); }

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--slate);
    line-height: 1.8;
}

/* ═══ ABOUT ═══ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 4px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid var(--gold-dark);
    border-radius: 4px;
    opacity: 0.3;
    z-index: -1;
}

.about-image-caption {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background: var(--gold);
    color: var(--noir);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-elegant);
    font-style: italic;
}

.about-label {
    font-family: var(--font-regal);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.about-text {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    color: var(--slate);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-quote {
    background: var(--parchment);
    padding: 2rem;
    border-left: 3px solid var(--gold);
    margin: 2rem 0;
}

.about-quote p {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.about-quote cite {
    font-family: var(--font-modern);
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-style: normal;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
}

.about-feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--parchment);
    border-radius: 4px;
    flex: 1;
}

.about-feature-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-feature-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate);
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
    padding-bottom: 0.25rem;
    transition: all var(--duration-fast);
}

.about-link:hover { color: var(--burgundy); border-color: var(--burgundy); }
.about-link:hover span { transform: translateX(5px); }
.about-link span { transition: transform var(--duration-fast); }

/* ═══ OFFERS ═══ */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: var(--noir-medium);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--duration-medium);
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: rgba(196,160,82,0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.offer-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.offer-card:hover .offer-image img { transform: scale(1.1); }

.offer-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,9,0.8) 100%);
}

.offer-content { padding: 2rem; }
.offer-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.offer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ivory);
    margin-bottom: 1rem;
}

.offer-description {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--sand);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.offer-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--stone);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.offer-features li::before {
    content: '✓';
    color: var(--gold);
}

.offer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    transition: all var(--duration-fast);
}

.offer-link:hover { color: var(--gold-bright); }
.offer-link:hover span { transform: translateX(5px); }
.offer-link span { transition: transform var(--duration-fast); }

/* ═══ PARK SECTION ═══ */
.park-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.park-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.park-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.park-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.park-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--ivory);
    margin-bottom: 2rem;
}

.park-text p {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--sand);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.park-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.park-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
}

.park-feature-icon { font-size: 1.5rem; }

.park-feature-text {
    font-size: 0.85rem;
    color: var(--sand);
}

/* ═══ TIMELINE ═══ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--noir);
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 1.5rem;
    background: var(--noir-medium);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--sand);
    line-height: 1.7;
}

/* ═══ LOCATION ═══ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.location-map {
    border-radius: 4px;
    overflow: hidden;
    height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.1);
    transition: filter var(--duration-medium);
}

.location-map:hover iframe { filter: grayscale(0); }

.location-info h3 {
    font-size: 2rem;
    color: var(--ivory);
    margin-bottom: 2rem;
}

.location-details { list-style: none; }

.location-details li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.location-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.location-text strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.location-text span {
    color: var(--sand);
}

/* ═══ CTA ═══ */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, #6b2535 100%);
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--ivory);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ═══ FOOTER ═══ */
.footer {
    background: var(--noir);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.footer-logo span { color: var(--gold); }

.footer-description {
    font-family: var(--font-elegant);
    color: var(--stone);
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-regal);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
    font-size: 0.9rem;
    color: var(--stone);
    transition: color var(--duration-fast);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--stone);
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: var(--stone);
    transition: color var(--duration-fast);
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--slate);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--slate);
    transition: color var(--duration-fast);
}

.footer-legal a:hover { color: var(--gold); }

/* ═══ ANIMATIONS ═══ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-luxe);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--ease-luxe);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s var(--ease-luxe);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ═══ PAGE HEADER ═══ */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--noir);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196,160,82,0.05) 0%, transparent 70%);
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    background: linear-gradient(160deg, var(--ivory), var(--gold-pale), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header .ornament {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 0;
}

/* ═══ PAGE CONTENT ═══ */
.page-content {
    padding: 5rem 0;
}

.page-content.light {
    background: var(--cream);
    color: var(--charcoal);
}

.page-content h2 {
    font-size: 1.8rem;
    color: var(--burgundy);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--parchment);
}

.page-content h2:first-child { margin-top: 0; }

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-content a {
    color: var(--burgundy);
    border-bottom: 1px solid var(--burgundy);
    transition: all var(--duration-fast);
}

.page-content a:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* ═══ CONTACT FORM ═══ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--noir-medium);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--ivory);
    font-family: var(--font-modern);
    font-size: 1rem;
    transition: all var(--duration-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
    .container { padding: 0 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--noir);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-menu.active { display: flex; }
    .nav-toggle { display: flex; z-index: 1001; }
    
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    
    .nav-link { font-size: 1.2rem; }
    .nav-cta { margin-left: 0; margin-top: 2rem; }
    
    .about-grid,
    .park-content,
    .location-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    .hero-stats { flex-wrap: wrap; }
    .hero-stat-divider { display: none; }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .offers-grid { grid-template-columns: 1fr; }
    .about-features { flex-direction: column; }
    .park-features { grid-template-columns: 1fr; }
    
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 60px;
    }
    .timeline-dot { left: 20px; }
    .timeline-content { width: 100%; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    section { padding: 5rem 0; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* ═══ WORDPRESS SPECIFIC ═══ */
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav { top: 46px; } }

.wp-block-image { margin: 2rem 0; }
.wp-block-image img { border-radius: 4px; }

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
