/*
Theme Name: The Purple Owl - Coming Soon
Description: A sophisticated coming soon landing page theme for The Purple Owl, a vinyl-focused bar & restaurant in London. Features an elegant purple and gold color scheme, animated elements, and email signup forms.
Author: The Purple Owl
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: purple-owl-coming-soon
Tags: coming-soon, landing-page, restaurant, bar, vinyl, music, responsive, one-page
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

:root {
    --primary-purple: #8A6E8C;
    --deep-purple: #6D566F;
    --brand-purple: #8a6f8b;
    --accent-gold: #C2A46A;
    --dark-bg: #faf6f0;
    --darker-bg: #F2EDE5;
    --text-light: #1F1A17;
    --text-gray: #5C524D;
    --text-muted: #7A706A;
    --border-color: #E4DDD3;
    --success-green: #2F7D58;
    --error-red: #B25555;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Native smooth scroll */
html { scroll-behavior: smooth; }

/* Anchor offset for fixed header */
#about,
#services,
#pottery,
#sip-paint,
#cocktails,
#contact,
#bar-reservations,
#careers-partnership,
#open-workshops,
#booking {
  scroll-margin-top: 160px;
}

@media (max-width: 768px) {
  #about,
  #services,
  #pottery,
  #sip-paint,
  #cocktails,
  #contact,
  #bar-reservations,
  #careers-partnership,
  #open-workshops,
  #booking {
    scroll-margin-top: 120px;
  }
}


/* Clean background - no texture */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: transparent;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 15px 0 10px;
    position: relative;
    z-index: 10;
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 0 60px;
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    text-align: center;
}

.hero h1 {
    font-family: 'National Park', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-transform: none;
    animation: none;
    text-shadow: none;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero .description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Hero logo placement */
.hero-logo { margin: 10px 0 8px; }
.hero-logo img,
.hero-logo .custom-logo {
    /* Reduced size for better proportions */
    width: clamp(240px, 32vw, 380px) !important;
    max-width: 100% !important;
    height: auto;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}

/* Hide header logo to avoid duplication after moving into hero (disabled for full site) */
/* header .logo-container { display: none; } */

/* SEO H1 title - visually hidden but accessible to search engines */
.hero-title {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    margin: 0;
    padding: 0;
}


/* Desktop layout - side by side */
@media (min-width: 769px) {
    .hero-content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 60px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .hero-text {
        flex: 1;
        text-align: center;
        max-width: 500px;
    }

    .hero-form {
        flex: 0 0 400px;
        max-width: 400px;
    }
}

/* Vinyl Record Animation */
.vinyl-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--dark-bg) 0%, var(--primary-purple) 50%, var(--dark-bg) 100%);
    opacity: 0.18;
    animation: spin 20s linear infinite;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.vinyl-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Additional Vinyl Record Decorations */
.vinyl-decoration-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--dark-bg) 0%, var(--deep-purple) 50%, var(--dark-bg) 100%);
    opacity: 0.15;
    animation: spinSlow 25s linear infinite;
    top: 20%;
    left: -50px;
    transform: translateY(-50%);
    z-index: -1;
}

.vinyl-decoration-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-decoration-3 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-bg) 50%, var(--primary-purple) 100%);
    opacity: 0.12;
    animation: spinReverse 30s linear infinite reverse;
    bottom: 15%;
    right: -60px;
    z-index: -1;
}

.vinyl-decoration-3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-decoration-4 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--deep-purple) 0%, var(--dark-bg) 50%, var(--deep-purple) 100%);
    opacity: 0.10;
    animation: spinSlow 15s linear infinite;
    bottom: 10%;
    left: -80px;
    z-index: -1;
}

.vinyl-decoration-4::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Enhanced Vinyl Record Decorations */
.vinyl-decoration-5 {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(60deg, var(--primary-purple) 0%, var(--dark-bg) 40%, var(--deep-purple) 100%);
    opacity: 0.22;
    animation: spinMedium 18s linear infinite;
    top: 10%;
    left: 15%;
    z-index: -2;
}

.vinyl-decoration-5::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-decoration-6 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--deep-purple) 0%, var(--dark-bg) 60%, var(--primary-purple) 100%);
    opacity: 0.15;
    animation: spinFast 12s linear infinite reverse;
    top: 70%;
    right: 10%;
    z-index: -2;
}

.vinyl-decoration-6::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-decoration-7 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--primary-purple) 0%, var(--dark-bg) 30%, var(--deep-purple) 70%, var(--dark-bg) 100%);
    opacity: 0.12;
    animation: spinUltraSlow 35s linear infinite;
    top: 30%;
    left: -90px;
    z-index: -3;
}

.vinyl-decoration-7::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Footer Vinyl Decoration */
.vinyl-decoration-footer {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--deep-purple) 0%, var(--dark-bg) 50%, var(--primary-purple) 100%);
    opacity: 0.15;
    animation: spinSlow 22s linear infinite reverse;
    top: -80px;
    right: 20px;
    z-index: -1;
}

.vinyl-decoration-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Enhanced Prominent Vinyl Record Decorations */
.vinyl-decoration-8 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-purple) 0%, var(--dark-bg) 30%, var(--deep-purple) 70%, var(--dark-bg) 100%);
    opacity: 0.10;
    animation: spinProminent 16s linear infinite;
    top: 5%;
    right: 5%;
    z-index: -2;
}

.vinyl-decoration-8::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-decoration-9 {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-bg) 40%, var(--primary-purple) 60%, var(--dark-bg) 100%);
    opacity: 0.10;
    animation: spinProminentReverse 22s linear infinite reverse;
    bottom: 25%;
    left: 5%;
    z-index: -3;
}

.vinyl-decoration-9::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-decoration-10 {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--dark-bg) 50%, var(--deep-purple) 100%);
    opacity: 0.10;
    animation: spinProminentMedium 14s linear infinite;
    top: 60%;
    left: 85%;
    z-index: -2;
}

.vinyl-decoration-10::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-decoration-11 {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(270deg, var(--deep-purple) 0%, var(--dark-bg) 35%, var(--primary-purple) 65%, var(--dark-bg) 100%);
    opacity: 0.10;
    animation: spinProminentFast 10s linear infinite reverse;
    top: 85%;
    right: 15%;
    z-index: -1;
}

.vinyl-decoration-11::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Interactive Hero Vinyl Record */
.hero-vinyl-interactive {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--primary-purple) 0%, var(--dark-bg) 30%, var(--deep-purple) 60%, var(--dark-bg) 100%);
    opacity: 0.15;
    animation: spinSlow 25s linear infinite, vinylFloat 6s ease-in-out infinite;
    top: 20%;
    right: -150px;
    z-index: -1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 50px rgba(107, 70, 193, 0.2);
}

.hero-vinyl-interactive:hover {
    opacity: 0.25;
    transform: scale(1.05);
    animation-duration: 15s, 4s;
    box-shadow: 0 0 80px rgba(107, 70, 193, 0.4);
}

.hero-vinyl-interactive::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-vinyl-interactive::after {
    content: '♪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-purple);
    font-size: 24px;
    opacity: 0.7;
    animation: textShimmer 3s ease-in-out infinite;
}

/* Coming Soon Animation */
.coming-soon {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: comingSoonPulse 3s ease-in-out infinite;
}

.coming-soon-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: fadeInUp 1.2s ease-out;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-purple) 50%, var(--accent-gold) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    margin-bottom: 12px;
}

.coming-soon-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

@keyframes comingSoonPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Additional Vinyl Animation Keyframes */
@keyframes spinMedium {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinFast {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinUltraSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Visual Dynamics Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(107, 70, 193, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(107, 70, 193, 0.6);
    }
}

@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes vinylFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

/* Prominent Vinyl Animation Keyframes */
@keyframes spinProminent {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinProminentReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes spinProminentMedium {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinProminentFast {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Section */
.signup-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.signup-section h2 {
    font-family: 'National Park', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent-gold);
    font-weight: 400;
}

.signup-section p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile-only separate section */
.mobile-signup-section {
    display: block;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    margin: 40px auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mobile-signup-section h2 {
    font-family: 'National Park', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent-gold);
    font-weight: 400;
}

.mobile-signup-section p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Hide mobile section on desktop */
@media (min-width: 769px) {
    .mobile-signup-section {
        display: none;
    }
}



.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    animation: fadeInScale 0.8s ease-out;
    position: relative;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1), 0 0 20px rgba(107, 70, 193, 0.2);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    animation: pulseGlow 2s ease-in-out infinite;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    animation: fadeInScale 0.8s ease-out;
    min-height: 100px;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1), 0 0 20px rgba(107, 70, 193, 0.2);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    animation: pulseGlow 2s ease-in-out infinite;
}

.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group.error textarea {
    border-color: var(--error-red);
}


.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group.error input {
    border-color: var(--error-red);
}

.error-message {
    color: var(--error-red);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--brand-purple);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(107, 76, 154, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    background: var(--deep-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 76, 154, 0.4);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(107, 76, 154, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-green);
    color: var(--success-green);
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-red);
    color: var(--error-red);
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.website-credit {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.website-credit p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.website-credit a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.website-credit a:hover {
    color: var(--accent-gold);
}





/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    .coming-soon {
        animation: none;
        opacity: 1;
        transform: scale(1);
    }
    .coming-soon-text {
        animation: none;
    }
    .coming-soon-text::after {
        opacity: 0.7;
        width: 60px;
    }
    .vinyl-decoration,
    .vinyl-decoration-2,
    .vinyl-decoration-3,
    .vinyl-decoration-4,
    .vinyl-decoration-5,
    .vinyl-decoration-6,
    .vinyl-decoration-7,
    .vinyl-decoration-8,
    .vinyl-decoration-9,
    .vinyl-decoration-10,
    .vinyl-decoration-11,
    .vinyl-decoration-footer,
    .hero-vinyl-interactive {
        animation: none;
    }
    .submit-btn {
        animation: none;
    }
    .hero h1 {
        animation: none;
    }
    .form-group input {
        animation: none;
    }
    .form-group input:focus {
        animation: none;
    }
    body::before {
        animation: none;
    }
}

/* Soft cream overhaul overrides and About section */
.vinyl-decoration,
.vinyl-decoration-2,
.vinyl-decoration-3,
.vinyl-decoration-4,
.vinyl-decoration-5,
.vinyl-decoration-6,
.vinyl-decoration-7,
.vinyl-decoration-8,
.vinyl-decoration-9,
.vinyl-decoration-10,
.vinyl-decoration-11,
.vinyl-decoration-footer,
.hero-vinyl-interactive {
    opacity: 0.08 !important;
    filter: grayscale(35%) sepia(8%) contrast(95%);
    box-shadow: none;
}
.hero-vinyl-interactive { box-shadow: 0 0 30px rgba(0,0,0,0.04); }

.signup-section {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.form-group label { color: var(--text-gray); }
.form-group input {
    background: #FFFFFF;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}
.form-group input:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(138, 110, 140, 0.15);
    background: #FFFFFF;
}
.submit-btn { color: #FFFFFF; background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%); }

.mobile-signup-section {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* About section */
.about { padding: 60px 0 40px; position: relative; }
.about .about-content { max-width: 900px; margin: 0 auto; text-align: left; }
.about h2 {
    font-family: 'National Park', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 400;
}
.about-lead {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.about-body {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.activity-chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.activity-chips li {
    font-size: 0.9rem;
    color: var(--text-gray);
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 999px;
}

/* Footer adjustments */
footer { border-top: 1px solid var(--border-color); }
.footer-content p { color: var(--text-muted); }

/* End soft overhaul */

/* Desktop hero centering refinement */
@media (min-width: 769px) {
  .hero {
    /* Reduce vertical padding and tighten height to counter header/logo height */
    padding: 16px 0 24px;
    min-height: calc(100vh - 350px);
  }
  .hero-content {
    /* Middle-align text and form columns for better vertical harmony */
    align-items: center;
  }
}

/* Vinyl placement refinement (desktop) */
@media (min-width: 769px) {
  .vinyl-decoration,
  .vinyl-decoration-3,
  .vinyl-decoration-5,
  .vinyl-decoration-8,
  .hero-vinyl-interactive { z-index: -1; }

  .vinyl-decoration { top: 12%; right: -90px; }
  .vinyl-decoration-3 { bottom: 12%; right: -90px; }
  .vinyl-decoration-5 { top: 22%; left: 10%; }
  .vinyl-decoration-8 { top: -40px; left: -70px; }
  .hero-vinyl-interactive { top: 18%; right: -200px; width: 260px; height: 260px; }
}


/* About section refinement */
.about { padding: 80px 0 70px; }
.about .about-content { max-width: 840px; }
.about h2 { font-weight: 400; letter-spacing: 0.2px; line-height: 1.4; margin-bottom: 14px; }
.about p { max-width: 65ch; }
.about-lead { font-size: 1.125rem; line-height: 1.8; margin-bottom: 14px; color: var(--text-gray); }
.about-body { font-size: 1.02rem; line-height: 1.8; margin-bottom: 20px; color: var(--text-muted); }
.activity-chips { margin-top: 14px; gap: 12px; }
.activity-chips li { padding: 10px 14px; font-weight: 500; letter-spacing: 0.2px; color: var(--text-gray); background: #FFFFFF; border-color: var(--border-color); }

@media (max-width: 768px) {
  .about { padding: 60px 0 50px; }
}

/* About section — elevate to editorial, two-column with feature cards */
.about { position: relative; }
.about .container { display: block; }
.about .about-content { border-left: 2px solid var(--border-color); padding-left: 24px; }
.about h2 { position: relative; display: inline-block; background-image: linear-gradient(var(--accent-gold), var(--accent-gold)); background-repeat: no-repeat; background-size: 38% 2px; background-position: 0 100%; padding-bottom: 6px; }


/* About heading with logo on the right */
.about h2.about-heading { display: inline-flex; align-items: center; gap: 12px; vertical-align: middle; }
.about-heading .about-heading-text { line-height: 1.2; }
.about-heading .about-heading-logo { display: inline-flex; align-items: center; }
.about-heading .about-heading-logo img,
.about-heading .about-heading-logo .custom-logo { height: 40px; width: auto; max-width: 160px; }
@media (min-width: 992px) {
  .about-heading .about-heading-logo img,
  .about-heading .about-heading-logo .custom-logo { height: 48px; }
}
@media (max-width: 480px) {
  .about-heading .about-heading-logo img,
  .about-heading .about-heading-logo .custom-logo { height: 34px; }
}

.about-aside { margin-top: 28px; }
.about-aside .feature-card { background: #fff; border: 1px solid var(--border-color); border-radius: 14px; padding: 18px 18px 16px; color: var(--text-gray); box-shadow: 0 8px 24px rgba(31,26,23,0.04); transition: box-shadow .3s ease, transform .3s ease; }
.about-aside .feature-card + .feature-card { margin-top: 16px; }
.about-aside .feature-card .fc-icon { width: 28px; height: 28px; color: var(--deep-purple); opacity: .85; margin-bottom: 10px; }
.about-aside .feature-card .fc-title { font-weight: 600; color: var(--text-light); margin-bottom: 6px; letter-spacing: .2px; }
.about-aside .feature-card .fc-body { font-size: .98rem; line-height: 1.7; color: var(--text-gray); }
.about-aside .feature-card.day { background-image: linear-gradient(180deg, rgba(194,164,106,.08), rgba(255,255,255,.9)); }
.about-aside .feature-card.night { background-image: linear-gradient(180deg, rgba(138,110,140,.08), rgba(255,255,255,.92)); }
.about-aside .feature-card:hover { box-shadow: 0 10px 28px rgba(31,26,23,0.06); transform: translateY(-2px); }

/* Chips micro-interaction, subtle */
.activity-chips li { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.activity-chips li:hover { transform: translateY(-1px); border-color: var(--accent-gold); box-shadow: 0 1px 0 rgba(194,164,106,.12); }

/* About logo column */
.about-logo-column { display: flex; justify-content: center; align-items: center; margin-top: 18px; }
.about-logo-column img, .about-logo-column .custom-logo {
  max-width: clamp(160px, 28vw, 260px);
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Prepare logo for animation (only when animation class is about to be added) */
.about-logo-column img.animate__backInRight,
.about-logo-column .custom-logo.animate__backInRight {
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 992px) { .about-logo-column { margin-top: 0; } }

/* Desktop grid layout */
@media (min-width: 992px) {
  .about .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
  .about-aside { margin-top: 0; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  .about-aside .feature-card, .activity-chips li { transition: none; transform: none !important; }
}


/* Gallery Section */
.gallery-section { padding: 60px 0 70px; }
.gallery-title { font-weight: 600; letter-spacing: 0.2px; display: inline-block; padding-bottom: 6px; background-image: linear-gradient(var(--accent-gold), var(--accent-gold)); background-repeat: no-repeat; background-size: 32% 2px; background-position: 0 100%; }
.gallery-viewport { position: relative; overflow: hidden; margin-top: 18px; outline: none; }
.gallery-track { display: flex; gap: 16px; overflow-x: auto; padding: 6px 36px 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.gallery-item { flex: 0 0 auto; width: 240px; scroll-snap-align: center; }
.gallery-item img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border-color); background: #fff; box-shadow: 0 6px 16px rgba(31,26,23,0.05); transition: transform .25s ease, box-shadow .25s ease; }
.gallery-item img:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31,26,23,0.08); }
.gallery-item img.error { opacity: 0.35; }

.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-color); background: rgba(255,255,255,0.9); color: var(--text-light); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(31,26,23,0.08); cursor: pointer; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.gallery-nav.prev { left: 6px; }
.gallery-nav.next { right: 6px; }
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.04); box-shadow: 0 6px 16px rgba(31,26,23,0.12); }
.gallery-nav:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 2px; }

@media (max-width: 768px) {
  .gallery-item { width: 72vw; }
  .gallery-item img { height: 46vw; }
  .gallery-nav { width: 34px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item img, .gallery-nav { transition: none; }
}




/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 30px 0 50px;
        min-height: calc(100vh - 100px);
    }

    .signup-section {
        padding: 40px 25px;
        margin: 30px auto;
    }

    .vinyl-decoration,
    .vinyl-decoration-3,
    .vinyl-decoration-4,
    .vinyl-decoration-6,
    .vinyl-decoration-7,
    .vinyl-decoration-8,
    .vinyl-decoration-9,
    .vinyl-decoration-10,
    .vinyl-decoration-11,
    .hero-vinyl-interactive {
        display: none;
    }

    .vinyl-decoration-5 {
        width: 80px;
        height: 80px;
        top: 15%;
        left: 10%;
    }

    .vinyl-decoration-5::before {
        width: 16px;
        height: 16px;
    }

    .vinyl-decoration-footer {
        width: 100px;
        height: 100px;
        top: -50px;
        right: 10px;
    }

    .vinyl-decoration-footer::before {
        width: 20px;
        height: 20px;
    }

    .vinyl-decoration-2 {
        width: 100px;
        height: 100px;
        left: -30px;
    }

    .vinyl-decoration-2::before {
        width: 20px;
        height: 20px;
    }

    .logo {
        max-width: 120px;
    }

    /* Override for hero logo - reduced mobile size */
    .hero-logo img,
    .hero-logo .custom-logo {
        width: clamp(200px, 35vw, 300px) !important;
        max-width: 85vw !important;
    }

    footer {
        padding: 40px 0 30px;
        margin-top: 60px;
    }

    .hero-form {
        display: none;
    }

    .coming-soon {
        margin-top: 25px;
    }



    .coming-soon {
        margin-top: 30px;
    }

    .website-credit {
        margin-top: 30px;
        padding-top: 15px;
    }

    .website-credit p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .signup-section {
        padding: 30px 20px;
    }

    .form-group input {
        padding: 12px 15px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 1rem;
    }
}

/* Horizontal Image Strip Gallery */
.gallery-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.gallery-section .gallery-wrapper {
  text-align: center;
  width: 100%;
}

.gallery-section .gallery-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.gallery-section .container {
  --magnifier: 6;
  --gap: 1vmin;
  --transition: 0.5s;

  width: 80vw;
  height: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  margin: 0 auto;
}

.gallery-section .container img {
  --brightness: 0.75;
  --grayscale: 1;
  transition: flex var(--transition), filter var(--transition);
  height: 100%;
  filter: grayscale(var(--grayscale)) brightness(var(--brightness));
  object-fit: cover;
  overflow: hidden;
  flex: 1;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* Prevent image drag on desktop too */
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-section .container img:hover {
  --brightness: 1.15;
  --grayscale: 0;
  flex: var(--magnifier);
}

/* Desktop only - disable hover effects on touch devices */
@media (hover: hover) and (pointer: fine) {
  .gallery-section .container img:hover {
    --brightness: 1.15;
    --grayscale: 0;
    flex: var(--magnifier);
  }
}

/* Business Address Section */
.address-section {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, rgba(138, 110, 140, 0.05) 0%, rgba(194, 164, 106, 0.05) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.address-section .container {
  text-align: center;
}

.address-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.address-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* OpenStreetMap Container - Full Width */
.map-container {
  width: 100vw;
  margin: 30px 0 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: none;
  transition: transform 0.3s ease;
}

.map-container:hover iframe {
  transform: scale(1.01);
}

/* OpenStreetMap Attribution */
.map-attribution {
  text-align: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-attribution small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.map-attribution a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.map-attribution a:hover {
  color: var(--primary-purple);
  text-decoration: underline;
}

/* Website Credit */
.website-credit {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.website-credit a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.website-credit a:hover {
  color: var(--primary-purple);
  text-decoration: none;
  transform: translateY(-1px);
}

.website-credit a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-purple) 50%, transparent 100%);
  animation: linkUnderlineGlow 0.6s ease-out;
}

@keyframes linkUnderlineGlow {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Responsive adjustments for horizontal strip gallery */
@media (max-width: 768px) {
  .gallery-section .container {
    width: 100vw;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(186, 140, 99, 0.2);
    padding: 20px 10px;
    padding-left: 0;
    gap: 12px;
    /* Remove scroll-behavior to prevent conflicts with touch scrolling */
    scroll-behavior: auto;
    /* Optimize for smooth scrolling performance */
    contain: content;
    isolation: isolate;
    /* Ensure proper touch handling */
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    /* Center items when snapping to start */
    scroll-padding-left: 12.5vw;
    scroll-padding-right: 12.5vw;
  }

  .gallery-section .container::-webkit-scrollbar {
    height: 6px;
  }

  .gallery-section .container::-webkit-scrollbar-track {
    background: rgba(186, 140, 99, 0.15);
    border-radius: 3px;
    margin: 0 10px;
  }

  .gallery-section .container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
  }

  .gallery-section .container::-webkit-scrollbar-thumb:hover {
    background: #c9a876;
  }

  .gallery-section .container img {
    display: block;
    flex: 0 0 75vw;
    height: 50vmin;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    /* Remove any filters that force layer promotion */
    filter: none;
    /* Remove transitions during scroll for performance */
    transition: none;
    /* Optimize rendering */
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    contain: paint;
    position: relative;
    z-index: 0;
    /* Reduce paint cost */
    box-shadow: none;
    border-radius: 0;
    /* Prevent interaction during scroll */
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
  }

  /* Remove active state that causes visual glitches */
  .gallery-section .container img:active {
    transform: translateZ(0);
  }

  .gallery-section .gallery-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .address-title {
    font-size: 1.6rem;
  }

  .address-text {
    font-size: 1rem;
    padding: 16px;
  }

  .map-container {
    margin: 20px 0 0;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 0;
  }

  .map-container iframe {
    height: 280px;
  }

  .website-credit {
    padding: 16px;
    margin-top: 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-section .container {
    width: 100vw;
    height: auto;
    gap: 10px;
    padding: 15px 8px;
    padding-left: 0;
    /* Ensure smooth scrolling on smaller devices */
    scroll-behavior: auto;
    overscroll-behavior-x: contain;
    /* Center items when snapping to start */
    scroll-padding-left: 7.5vw;
    scroll-padding-right: 7.5vw;
  }

  .gallery-section .container img {
    display: block;
    flex: 0 0 85vw;
    height: 45vmin;
    /* Maintain performance optimizations */
    transition: none;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    contain: paint;
    position: relative;
    z-index: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .gallery-section {
    padding: 60px 0;
    min-height: 300px;
  }

  .gallery-section .gallery-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .address-section {
    padding: 40px 0 60px;
  }

  .map-container {
    margin: 15px 0 0;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 0;
  }

  .map-container iframe {
    height: 250px;
  }

  .website-credit {
    padding: 12px;
    margin-top: 15px;
    font-size: 0.75rem;
  }
}

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .gallery-section .container img {
    transition: none;
    filter: none;
    --brightness: 1;
    --grayscale: 0;
  }

  .gallery-section .container img:hover {
    flex: 2;
  }

  .gallery-section {
    min-height: auto;
  }
}

/* Defensive CSS - Prevent unwanted large elements */
/* Hide any potential WhatsApp widgets or large black elements */
*[class*="whatsapp"],
*[id*="whatsapp"],
*[class*="wa-widget"],
*[id*="wa-widget"],
.whatsapp-widget,
.whatsapp-button,
.whatsapp-chat,
.wa-chat-widget,
.wa-widget {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Prevent any element from becoming excessively large */
* {
    max-width: 100vw !important;
}

/* Prevent any fixed/absolute positioned elements from being too large */
*[style*="position: fixed"],
*[style*="position: absolute"] {
    max-width: 100vw !important;
    max-height: 100vh !important;
}

/* Hide any elements that might be injected with WhatsApp-related URLs */
*[style*="whatsapp"],
*[style*="wa.me"],
*[href*="wa.me"],
*[src*="whatsapp"] {
    display: none !important;
}

/* Exception: Allow the legitimate Purple Owl logo (which has WhatsApp in filename) */
img[src*="WhatsApp_Image_2025-06-12_at_14.18.11-removebg-preview.png"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* Remove size constraints for hero logo - let hero-specific CSS handle sizing */
}

/* Specific constraint for non-hero instances of the logo */
img[src*="WhatsApp_Image_2025-06-12_at_14.18.11-removebg-preview.png"]:not(.hero-logo-img) {
    max-width: 200px !important;
    max-height: 200px !important;
}



/* === The Purple Owl: Site Header & Homepage Sections (Lovely Brushly-inspired) === */

/* Reset & Base */
.po-main { background: #fff; }
.po-main p { font-size: 18px; line-height: 28px; color: var(--text-gray); margin-bottom: 16px; }
.po-main strong { color: var(--primary-purple); font-weight: 600; }

/* Header - Optimized logo size for better visual balance */
.po-site-header { position: sticky; top: 0; z-index: 1000; background: #ffffff; border-bottom: 1px solid var(--border-color); padding: 0 50px; height: 140px; display: flex; align-items: center; }
.po-header-inner { display: flex; align-items: center; justify-content: center; gap: 20px; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; }
.po-brand { position: absolute; left: 0; }
.po-brand .logo { height: 90px; width: auto; }
.po-brand .custom-logo-link { display: flex; align-items: center; }
.po-brand img { height: 90px; width: auto; }
/* Nav - Sexy Dropdown Menu - Centered */
.po-nav { display: flex; align-items: center; gap: 32px; justify-content: center; }
.po-nav-menu { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; justify-content: center; }
.po-nav-menu > li { position: relative; }
.po-nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 16px;
    transition: all .3s ease;
    display: block;
    padding: 8px 0;
}
.po-nav-menu > li > a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Dropdown Styles */
.po-nav-dropdown { position: relative; }
.po-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.po-dropdown-arrow {
    font-size: 12px;
    transition: transform .3s ease;
    display: inline-block;
}
.po-nav-dropdown:hover .po-dropdown-arrow {
    transform: rotate(180deg);
}

.po-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--dark-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    min-width: 220px;
    padding: 12px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.po-nav-dropdown:hover .po-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.po-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.po-dropdown-menu a {
    padding: 12px 24px;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
    border-left: 3px solid transparent;
}

.po-dropdown-menu a:hover {
    background: rgba(186, 140, 99, 0.1);
    color: var(--accent-gold);
    border-left-color: var(--accent-gold);
    padding-left: 28px;
}

.po-nav-cta { margin-left: 8px; }

/* Burger */
.po-nav-toggle { display: none; }
.po-nav-burger {
    display: none;
    width: 28px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}
.po-nav-burger:hover {
    transform: scale(1.1);
}
.po-nav-burger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}
.po-nav-burger span:nth-child(1){ top:0; }
.po-nav-burger span:nth-child(2){ top:10px; opacity: 1; }
.po-nav-burger span:nth-child(3){ top:20px; }

/* Animated hamburger to X */
.po-nav-toggle:checked ~ .po-nav-burger span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}
.po-nav-toggle:checked ~ .po-nav-burger span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}
.po-nav-toggle:checked ~ .po-nav-burger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* Buttons (matching Lovely Brushly style) */
/* Outline/Keyline Button Styles */
.po-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: none;
    transition: all .3s ease;
    background: transparent;
    border: 2px solid var(--brand-purple);
    color: var(--brand-purple);
}

.po-btn:hover {
    background: var(--brand-purple);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 76, 154, 0.25);
}

.po-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(107, 76, 154, 0.2);
}

/* Purple keyline button (default) - for use on white/cream backgrounds */
.po-btn-primary {
    background: transparent;
    color: var(--brand-purple);
    border: 2px solid var(--brand-purple);
}

.po-btn-primary:hover {
    background: var(--brand-purple);
    color: #fff;
}

/* White keyline button - for use over images or dark backgrounds */
.po-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.po-btn-secondary:hover {
    background: #fff;
    color: var(--brand-purple);
}

/* Hero Section (full-width background image) */
.po-hero {
    position: relative;
    min-height: 500px;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('http://thepurpleowl-2.local/wp-content/uploads/2025/09/sip-and-paint.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.po-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.po-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.po-hero-title {
    font-family: 'National Park', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.po-hero-content .po-hero-opening-date {
    display: block !important;
    font-family: 'National Park', serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
}

.po-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Opening Date Vinyl Roundels */
.po-opening-roundel {
    position: absolute;
    top: 100px;
    z-index: 10;
    animation: roundelFloat 4s ease-in-out infinite;
}

/* Right roundel (original position) */
.po-opening-roundel-right {
    right: 30px;
}

/* Left roundel (mirrored position) */
.po-opening-roundel-left {
    left: 30px;
}

.po-roundel-vinyl {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(145deg, #6D566F 0%, #8a6e8c 30%, #6D566F 50%, #8a6e8c 70%, #6D566F 100%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 3px var(--accent-gold),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: roundelSpin 20s linear infinite;
}

.po-roundel-grooves {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: repeating-radial-gradient(
        circle at center,
        transparent 0px,
        transparent 2px,
        rgba(109, 86, 111, 0.4) 2px,
        rgba(109, 86, 111, 0.4) 3px
    );
    pointer-events: none;
}

.po-roundel-label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, var(--deep-purple) 0%, var(--primary-purple) 100%);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: roundelSpinReverse 20s linear infinite;
    border: 2px solid var(--accent-gold);
}

.po-roundel-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--darker-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 2px var(--accent-gold);
}

.po-roundel-arc-top {
    font-family: 'Playfair Display', serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -2px;
}

.po-roundel-date {
    font-family: 'National Park', serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    margin-top: 2px;
}

.po-roundel-year {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-top: 1px;
}

@keyframes roundelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes roundelSpinCounterClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes roundelSpinReverse {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes roundelSpinReverseClockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes roundelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Left roundel spins in opposite direction for visual balance */
.po-opening-roundel-left .po-roundel-vinyl {
    animation: roundelSpinCounterClockwise 20s linear infinite;
}

.po-opening-roundel-left .po-roundel-label {
    animation: roundelSpinReverseClockwise 20s linear infinite;
}

/* Roundel responsive adjustments */
@media (max-width: 768px) {
    /* Hide roundels on mobile/tablet - text subheadline remains visible */
    .po-opening-roundel {
        display: none;
    }
}

/* Roundel adjustments for larger tablets (if needed in future) */
@media (max-width: 1024px) and (min-width: 769px) {
    .po-opening-roundel {
        top: 80px;
    }

    .po-opening-roundel-right {
        right: 15px;
    }

    .po-opening-roundel-left {
        left: 15px;
    }

    .po-roundel-vinyl {
        width: 110px;
        height: 110px;
    }

    .po-roundel-grooves {
        width: 95px;
        height: 95px;
    }

    .po-roundel-label {
        width: 65px;
        height: 65px;
    }

    .po-roundel-arc-top {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .po-roundel-date {
        font-size: 10px;
    }

    .po-roundel-year {
        font-size: 9px;
    }
}

/* 480px roundel styles removed - roundels are hidden at 768px and below */

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .po-opening-roundel,
    .po-roundel-vinyl,
    .po-roundel-label {
        animation: none;
    }

    .po-roundel-label {
        transform: translate(-50%, -50%);
    }
}

/* Intro Section (split layout with text and image) */
.po-intro {
    padding: 80px 0;
    background: #fff;
}

.po-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.po-intro-text {
    padding-right: 20px;
}

.po-intro-title {
    font-family: 'National Park', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-purple);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.po-intro-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.po-intro-text .po-btn {
    margin-top: 20px;
}

.po-intro-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.po-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Services Section (alternating image/text rows) */
.po-services {
    padding: 0;
    background: #fff;
}

/* Introducing Our Experiences Banner */
.po-experiences-intro-banner {
    text-align: center;
    padding: 40px 0 60px;
    background: #fff;
    position: relative;
}

/* Decorative line removed as per client request */

.po-experiences-intro-title {
    font-family: 'National Park', serif;
    font-size: 63px;
    font-weight: 400;
    color: var(--primary-purple);
    margin: 0;
    position: relative;
    display: inline-block;
}

/* Decorative underline removed as per client request */
.po-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    padding: 80px 0;
}
.po-service-row:nth-child(even) {
    background: var(--dark-bg);
}
/* All-Day Drop-In Sessions section - white background */
#sip-paint.po-service-row {
    background: #ffffff !important;
    position: relative;
}
#sip-paint.po-service-row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background-color: #ffffff;
    pointer-events: none;
    z-index: 0;
}
#sip-paint.po-service-row > * {
    position: relative;
    z-index: 1;
}
/* Ensure no backgrounds in All-Day Drop-In Sessions section */
#sip-paint .po-service-img,
#sip-paint .po-service-content {
    background: transparent !important;
}
.po-service-row-reverse {
    direction: rtl;
}
.po-service-row-reverse > * {
    direction: ltr;
}
.po-service-img {
    margin: 0;
    padding: 0 60px;
}
.po-service-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.po-service-content {
    padding: 0 60px;
}
.po-service-text {
    max-width: 500px;
}
.po-service-eyebrow {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-purple);
    margin-bottom: 10px;
    display: block;
}
.po-service-title {
    font-family: 'National Park', serif;
    font-size: 39px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary-purple);
    margin-bottom: 24px;
}
.po-service-text p {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-gray);
    margin-bottom: 16px;
}
.po-service-text .po-btn {
    margin-top: 24px;
}

/* Quote / CTA Section */
.po-quote-section {
    padding: 100px 0 40px;
    background: linear-gradient(180deg, rgba(194,164,106,.12), rgba(138,110,140,.12));
    position: relative;
}
.po-quote-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.po-quote-title {
    font-family: 'National Park', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-purple);
    margin-bottom: 16px;
}
.po-quote-title em {
    font-style: italic;
}
.po-quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0;
}
.po-quote-content p {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-gray);
    margin-bottom: 20px;
}
.po-quote-content .po-btn {
    margin-top: 24px;
}

/* Full-width Image */
.po-full-image {
    padding: 0;
    margin: 0;
}
.po-full-image figure {
    margin: 0;
}
.po-full-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Home Gallery Section */
.po-home-gallery {
    padding: 100px 0;
    background: #fff;
}

.po-gallery-section-title {
    font-family: 'National Park', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 60px;
}

/* Home Gallery Slider - Optimized for Performance */
.po-home-gallery-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.po-home-gallery-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
    /* Remove scroll-behavior: smooth to allow JS to control smoothness */
    /* GPU acceleration for smoother scrolling */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Optimize scrolling performance */
    contain: layout style paint;
    will-change: scroll-position;
}

/* Disable pointer events during auto-scroll to prevent hover jitter */
.po-home-gallery-slider.auto-scrolling {
    pointer-events: none;
}

.po-home-gallery-slider.auto-scrolling * {
    pointer-events: none;
}

.po-home-gallery-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.po-home-gallery-slide {
    flex: 0 0 400px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    /* Optimize rendering performance */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: auto;
}

/* Only enable hover effects when NOT auto-scrolling */
.po-home-gallery-slider:not(.auto-scrolling) .po-home-gallery-slide {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.po-home-gallery-slider:not(.auto-scrolling) .po-home-gallery-slide:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.po-home-gallery-figure {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.po-home-gallery-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    /* Prevent layout shifts */
    display: block;
}

/* Only enable image scale on hover when NOT auto-scrolling */
.po-home-gallery-slider:not(.auto-scrolling) .po-home-gallery-figure img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.po-home-gallery-slider:not(.auto-scrolling) .po-home-gallery-slide:hover .po-home-gallery-figure img {
    transform: scale(1.05);
}

.po-gallery-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   Photo Gallery Section
   ======================================== */
.po-photo-gallery {
    background: var(--dark-bg);
    padding: 100px 0;
}

.po-gallery-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 63px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 60px;
}

.po-gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.po-gallery-nav {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.po-gallery-nav:hover {
    background: var(--primary-purple);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.po-gallery-nav:active {
    transform: scale(0.95);
}

.po-gallery-nav svg {
    color: var(--dark-bg);
    transition: color .3s ease;
}

.po-gallery-nav:hover svg {
    color: var(--accent-gold);
}

.po-gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.po-gallery-slider {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--border-color);
    flex: 1;
    scroll-behavior: smooth;
}

.po-gallery-slider::-webkit-scrollbar {
    height: 8px;
}

.po-gallery-slider::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 4px;
}

.po-gallery-slider::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.po-gallery-slider::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}

.po-gallery-track {
    display: flex;
    gap: 24px;
    padding-bottom: 20px;
}

.po-gallery-item {
    flex: 0 0 450px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.po-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.po-gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .po-service-row,
    .po-quote-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .po-service-row-reverse {
        direction: ltr;
    }

    .po-hero {
        min-height: 500px;
        height: 100vh;
    }

    .po-hero-title {
        font-size: 42px;
    }

    .po-intro-title {
        font-size: 38px;
    }

    .po-gallery-section-title,
    .po-gallery-title {
        font-size: 38px;
    }

    .po-home-gallery-slide {
        flex: 0 0 320px;
    }

    .po-intro {
        padding: 60px 0;
    }

    .po-intro-content {
        gap: 40px;
        padding: 0 30px;
    }

    .po-intro-text p {
        font-size: 15px;
    }

    .po-intro-image {
        min-height: 400px;
    }

    .po-gallery-item {
        flex: 0 0 380px;
    }

    .po-gallery-item img {
        height: 300px;
    }

    .po-service-title {
        font-size: 32px;
    }

    .po-quote-title {
        font-size: 36px;
    }

    .po-service-img,
    .po-service-content {
        padding: 0 30px;
    }

    .po-review-card {
        flex: 0 0 350px;
    }

    .po-gallery-nav {
        width: 48px;
        height: 48px;
    }

    .po-gallery-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .po-gallery-nav {
        width: 44px;
        height: 44px;
    }

    .po-gallery-nav svg {
        width: 18px;
        height: 18px;
    }

    .po-gallery-wrapper {
        gap: 12px;
    }
    .po-site-header {
        padding: 0 20px;
        height: 80px;
    }

    .po-header-inner {
        justify-content: space-between;
    }

    .po-brand {
        position: static;
    }

    .po-brand .logo,
    .po-brand img {
        height: 60px;
    }

    .po-nav-burger {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
        pointer-events: auto;
        cursor: pointer;
    }

    .po-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--dark-bg);
        border-bottom: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                    opacity 0.3s ease,
                    padding 0.3s ease;
        visibility: hidden;
    }

    .po-nav-menu {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        display: flex;
    }

    .po-nav-menu li {
        width: 100%;
    }

    .po-nav-menu a {
        display: block;
        padding: 12px 0;
        color: var(--text-light);
        font-size: 16px;
    }

    /* Mobile Dropdown Styles */
    .po-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: none;
        border-left: 2px solid var(--accent-gold);
        border-radius: 0;
        padding: 8px 0 8px 16px;
        margin-top: 8px;
        box-shadow: none;
        background: rgba(186, 140, 99, 0.05);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .po-nav-dropdown:hover .po-dropdown-menu,
    .po-nav-dropdown.active .po-dropdown-menu {
        max-height: 300px;
    }

    .po-dropdown-menu a {
        padding: 10px 16px;
        font-size: 14px;
    }

    .po-dropdown-menu a:hover {
        padding-left: 20px;
    }

    .po-dropdown-arrow {
        margin-left: auto;
    }

    .po-nav-cta {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
        text-align: center;
    }

    .po-nav-toggle:checked ~ .po-nav {
        max-height: 600px;
        opacity: 1;
        padding: 20px;
        visibility: visible;
    }

    /* Mobile dropdown visibility and layering tweaks */
    .po-nav {
        z-index: 1200;
    }

    .po-nav-dropdown.active .po-dropdown-menu {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile gallery shows one full image per view */
@media (max-width: 768px) {
  .po-gallery-item { flex: 0 0 100%; }

  .po-home-gallery-slide {
    flex: 0 0 280px;
  }

  .po-hero {
    min-height: 400px;
    height: 100vh;
  }

  .po-hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .po-hero-opening-date {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .po-hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .po-hero-buttons .po-btn {
    width: 100%;
    max-width: 300px;
  }

  .po-intro-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .po-gallery-section-title,
  .po-gallery-title {
    font-size: 28px;
  }

  .po-intro {
    padding: 50px 0;
  }

  .po-intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .po-intro-text {
    padding-right: 0;
  }

  .po-intro-text p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .po-intro-image {
    min-height: 350px;
    order: -1;
  }
}

    .po-photo-gallery {
        padding: 60px 0;
    }

    .po-gallery-item {
        flex: 0 0 320px;
    }

    .po-gallery-item img {
        height: 250px;
    }

    .po-services,
    .po-quote-section,
    .po-reviews {
        padding: 60px 0;
    }

    .po-experiences-intro-banner {
        padding: 30px 0 40px;
    }

    .po-experiences-intro-title {
        font-size: 48px;
    }

    .po-service-row {
        padding: 60px 0;
    }

    .po-service-img,
    .po-service-content {
        padding: 0 20px;
    }

    .po-review-card {
        flex: 0 0 300px;
        padding: 24px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .po-site-header {
        height: 70px;
    }

    .po-brand .logo,
    .po-brand img {
        height: 52px;
    }

    .po-hero {
        min-height: 350px;
        height: 100vh;
    }

    .po-hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .po-hero-opening-date {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .po-intro-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .po-reviews-title,
    .po-gallery-title {
        font-size: 24px;
    }

    .po-service-title {
        font-size: 25px;
    }

    .po-quote-title {
        font-size: 24px;
    }

    .po-intro {
        padding: 40px 0;
    }

    .po-intro-content {
        padding: 0 15px;
    }

    .po-intro-title {
        font-size: 36px;
    }

    .po-experiences-intro-banner {
        padding: 25px 0 30px;
    }

    .po-experiences-intro-title {
        font-size: 36px;
    }

    .po-intro-text p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .po-intro-image {
        min-height: 300px;
    }

    .po-photo-gallery {
        padding: 40px 0;
    }

    .po-gallery-item {
        flex: 0 0 280px;
    }

    .po-gallery-item img {
        height: 220px;
    }

    .po-btn {
        padding: 10px 20px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .po-main p,
    .po-service-text p,
    .po-quote-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .po-review-card {
        flex: 0 0 280px;
    }
}

/* ========================================
   Events Page
   ======================================== */
.po-events-page {
    background: var(--dark-bg);
}

/* Page Title */
.po-page-title {
    background: var(--primary-purple);
    padding: 60px 0;
    text-align: center;
}

.po-page-title h1 {
    font-family: 'National Park', serif;
    font-size: 63px;
    font-weight: 400;
    color: var(--dark-bg);
    margin: 0;
}

/* Events Sections */
.po-events-section {
    padding: 100px 0;
    background: #ffffff;
}


/* White variant for alternating background on Events page */
.po-events-section--white {
    background: #ffffff;
}

.po-events-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.po-events-section-reverse .po-events-row {
    direction: rtl;
}

.po-events-section-reverse .po-events-row > * {
    direction: ltr;
}

.po-events-content h2 {
    font-family: 'National Park', serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--primary-purple);
    margin: 0 0 24px 0;
}

.po-events-content p {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-gray);
    margin: 0 0 20px 0;
}

.po-events-content .po-btn {
    margin-top: 12px;
}

.po-events-image {
    margin: 0;
}

.po-events-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Subheading Section */
.po-events-subheading {
    background: #876c89;
    padding: 60px 0;
    text-align: center;
}

.po-events-subheading h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: #f6f2ee;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Enquiry Form Section */
.po-events-enquiry {
    background: #faf6f0;
    padding: 60px 0;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
}

.po-enquiry-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--primary-purple);
    text-align: center;
    margin: 0 0 16px 0;
}

.po-enquiry-intro {
    text-align: center;
    margin-bottom: 40px;
}

.po-enquiry-intro p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

.po-enquiry-form {
    max-width: 800px;
    margin: 0 auto;
}

.po-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.po-enquiry-form .po-form-group {
    margin-bottom: 16px;
}

.po-form-row .po-form-group {
    margin-bottom: 0;
}

.po-enquiry-form input,
.po-enquiry-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    transition: border-color .2s;
}

.po-enquiry-form input:focus,
.po-enquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.po-enquiry-form textarea {
    resize: vertical;
    min-height: 80px;
}

.po-enquiry-form small {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    font-style: italic;
}

.po-form-checkbox {
    display: flex;
    align-items: flex-start;
}

.po-form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
}

.po-form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.po-enquiry-form button[type="submit"] {
    width: 100%;
    cursor: pointer;
}

/* ========================================
   Contact Section
   ======================================== */
.po-contact {
    background: #faf6f0;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.po-contact::before {
    display: none;
}

.po-contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.po-contact-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 24px auto 0;
    border-radius: 2px;
}

.po-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
    position: relative;
}

.po-contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
}

.po-contact-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.po-contact-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.po-contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #D4B87A 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 12px rgba(194, 164, 106, 0.3);
}

.po-contact-icon svg {
    width: 24px;
    height: 24px;
}

.po-contact-details h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-purple);
    margin: 0 0 10px 0;
}

.po-contact-details p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-gray);
    margin: 0;
}

.po-contact-details a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color .2s;
    font-weight: 500;
}

.po-contact-details a:hover {
    color: var(--primary-purple);
}

/* Contact Form */
.po-contact-form {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(138, 110, 140, 0.1);
    position: relative;
    overflow: hidden;
}

/* Clean background - no texture */
.po-contact-form::before {
    display: none;
}

.po-contact-form > * {
    position: relative;
    z-index: 1;
}

.po-form-group {
    margin-bottom: 24px;
}

.po-form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-purple);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.po-form-group input,
.po-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: all .3s ease;
    background: #FAFAF9;
}

.po-form-group input:focus,
.po-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(194, 164, 106, 0.1);
}

.po-form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.po-form button[type="submit"] {
    width: 100%;
    cursor: pointer;
}

/* ========================================
   Footer
   ======================================== */
.po-footer {
    background: #4A3A4C;
    padding: 30px 0;
    text-align: center;
}

.po-footer p {
    margin: 0;
    font-size: 14px;
    color: #faf6f0;
}

.po-footer a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}

.po-footer a:hover {
    color: #fff;
}

/* Ronny.design hover effect */
.po-footer .ronny-link {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.po-footer .ronny-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C2A46A, #fff, #C2A46A);
    transition: width 0.3s ease, left 0.3s ease;
}

.po-footer .ronny-link:hover {
    transform: scale(1.1);
    color: #fff;
}

.po-footer .ronny-link:hover::before {
    width: 100%;
    left: 0;
}

/* Decorative Page Heading Style */
.po-page-heading-decorative {
    font-family: 'National Park', serif;
    font-size: 63px;
    font-weight: 400;
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.po-page-heading-decorative::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ========================================
   Events Page Responsive
   ======================================== */
@media (max-width: 1024px) {
    .po-page-title h1 {
        font-size: 48px;
    }

    .po-events-section {
        padding: 80px 0;
    }

    .po-events-row {
        gap: 60px;
    }

    .po-events-content h2 {
        font-size: 28px;
    }

    .po-events-subheading h4 {
        font-size: 24px;
    }

    .po-enquiry-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .po-page-title {
        padding: 40px 0;
    }

    .po-page-title h1 {
        font-size: 36px;
    }

    .po-events-section {
        padding: 60px 0;
    }

    .po-events-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .po-events-section-reverse .po-events-row {
        direction: ltr;
    }

    .po-events-content h2 {
        font-size: 24px;
    }

    .po-events-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .po-events-subheading {
        padding: 40px 0;
    }

    .po-events-subheading h4 {
        font-size: 20px;
    }

    .po-events-enquiry {
        padding: 40px 0;
        min-height: auto;
    }

    .po-enquiry-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .po-enquiry-intro {
        margin-bottom: 30px;
    }

    .po-enquiry-intro p {
        font-size: 15px;
    }

    .po-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .po-enquiry-form .po-form-group {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .po-page-title {
        padding: 30px 0;
    }

    .po-page-title h1 {
        font-size: 28px;
    }

    .po-events-section {
        padding: 40px 0;
    }

    .po-events-row {
        gap: 30px;
    }

    .po-events-content h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .po-events-content p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .po-events-subheading {
        padding: 30px 0;
    }

    .po-events-subheading h4 {
        font-size: 18px;
    }

    .po-events-enquiry {
        padding: 30px 0;
        min-height: auto;
    }

    .po-enquiry-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .po-enquiry-intro {
        margin-bottom: 24px;
    }

    .po-enquiry-intro p {
        font-size: 14px;
    }

    .po-enquiry-form input,
    .po-enquiry-form textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .po-form-row {
        gap: 10px;
    }

    .po-enquiry-form .po-form-group {
        margin-bottom: 10px;
    }
}

/* ========================================
   Newsletter Popup Modal
   ======================================== */
.po-newsletter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.po-newsletter-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.po-newsletter-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.po-newsletter-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    width: 85%;
    max-height: 75vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 76, 154, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: slideUp 0.4s ease;
}

.po-newsletter-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--brand-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 24px;
    color: var(--brand-purple);
    font-weight: 300;
    line-height: 1;
}

.po-newsletter-close:hover {
    background: var(--brand-purple);
    color: #fff;
    transform: rotate(90deg);
}

.po-newsletter-form-section {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.po-newsletter-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--brand-purple);
    margin-bottom: 12px;
    line-height: 1.2;
    text-align: center;
}

.po-newsletter-subheading {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.5;
    text-align: center;
}

.po-newsletter-form {
    margin-bottom: 20px;
}

.po-newsletter-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.po-newsletter-input:focus {
    outline: none;
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px rgba(107, 76, 154, 0.1);
}

.po-newsletter-submit {
    width: 100%;
    padding: 14px 18px;
    background: var(--brand-purple);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 76, 154, 0.3);
}

.po-newsletter-submit:hover {
    background: var(--deep-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 76, 154, 0.4);
}

.po-newsletter-submit:active {
    transform: translateY(0);
}

.po-newsletter-disclaimer {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    text-align: center;
    margin-top: 6px;
}

.po-newsletter-disclaimer a {
    color: var(--brand-purple);
    text-decoration: underline;
}

.po-newsletter-disclaimer a:hover {
    color: var(--deep-purple);
}

.po-newsletter-image-section {
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.po-newsletter-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive styles for newsletter modal */
@media (max-width: 768px) {
    .po-newsletter-content {
        grid-template-columns: 1fr;
        max-width: 95%;
        max-height: 95vh;
        overflow-y: auto;
    }

    .po-newsletter-form-section {
        padding: 40px 30px;
        order: 1;
    }

    .po-newsletter-image-section {
        order: 2;
        min-height: 250px;
    }

    .po-newsletter-heading {
        font-size: 28px;
    }

    .po-newsletter-subheading {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .po-newsletter-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ========================================
   GALLERY PAGE STYLES
   ======================================== */

/* Gallery Intro Section */
.po-gallery-intro {
    padding: 30px 0 20px;
    text-align: center;
    background-color: #faf6f0;
}

.po-gallery-intro .po-page-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.po-gallery-intro .po-page-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Grid Section */
.po-gallery-grid-section {
    padding: 40px 0;
}

.po-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.po-gallery-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--dark-bg);
    aspect-ratio: 1 / 1;
}

.po-gallery-figure {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.po-gallery-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.po-gallery-grid-item:hover .po-gallery-figure img {
    transform: scale(1.1);
}

.po-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 111, 139, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.po-gallery-grid-item:hover .po-gallery-overlay {
    opacity: 1;
}

.po-gallery-zoom {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--brand-purple);
}

.po-gallery-zoom:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(138, 111, 139, 0.3);
}

.po-gallery-zoom svg {
    width: 32px;
    height: 32px;
}

/* Gallery CTA Section */
.po-gallery-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(138, 111, 139, 0.05) 0%, rgba(138, 111, 139, 0.02) 100%);
    text-align: center;
}

.po-gallery-cta .po-cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #6D566F;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

/* Lightbox */
.po-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.po-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.po-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.po-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.po-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.po-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.po-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.po-lightbox-prev,
.po-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.po-lightbox-prev {
    left: -70px;
}

.po-lightbox-next {
    right: -70px;
}

.po-lightbox-prev:hover,
.po-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .po-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .po-gallery-intro {
        padding: 35px 0 50px;
    }

    .po-gallery-intro .po-page-subtitle {
        font-size: 20px;
    }

    .po-page-heading-decorative {
        font-size: 48px;
    }

    .po-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .po-gallery-grid-section {
        padding: 60px 0;
    }

    .po-gallery-cta {
        padding: 60px 0;
    }

    .po-gallery-cta .po-cta-heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .po-gallery-intro {
        padding: 30px 0 40px;
    }

    .po-gallery-intro .po-page-subtitle {
        font-size: 18px;
    }

    .po-gallery-intro .po-page-description {
        font-size: 16px;
    }

    .po-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .po-gallery-grid-section {
        padding: 40px 0;
    }

    .po-gallery-cta {
        padding: 40px 0;
    }

    .po-gallery-cta .po-cta-heading {
        font-size: 24px;
    }

    .po-lightbox-prev {
        left: 10px;
    }

    .po-lightbox-next {
        right: 10px;
    }

    .po-lightbox-close {
        top: 10px;
        right: 10px;
    }

    .po-page-heading-decorative {
        font-size: 36px;
    }
}

/* ========================================
   Contact & Footer Responsive
   ======================================== */
@media (max-width: 1024px) {
    .po-contact-title {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .po-contact-inner {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .po-contact {
        padding: 40px 0;
        min-height: auto;
    }

    .po-contact-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .po-contact-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .po-contact-info {
        gap: 20px;
    }

    .po-contact-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .po-contact {
        padding: 30px 0;
        min-height: auto;
    }

    .po-contact-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .po-contact-item {
        gap: 16px;
    }

    .po-contact-icon {
        width: 40px;
        height: 40px;
    }

    .po-contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .po-contact-details h4 {
        font-size: 18px;
    }

    .po-contact-details p {
        font-size: 14px;
        line-height: 20px;
    }

    .po-contact-form {
        padding: 24px 16px;
    }

    .po-form-group {
        margin-bottom: 20px;
    }

    .po-footer {
        padding: 20px 0;
    }

    .po-footer p {
        font-size: 12px;
    }
}

/* ========================================
   Back to Top Button
   ======================================== */
.po-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--accent-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.po-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.po-back-to-top:hover {
    background: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.po-back-to-top:active {
    transform: translateY(-2px);
}

.po-back-to-top svg {
    color: var(--dark-bg);
    transition: color .3s ease;
}

.po-back-to-top:hover svg {
    color: var(--accent-gold);
}

/* Responsive adjustments for Back to Top button */
@media (max-width: 768px) {
    .po-back-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }

    .po-back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   New Sections - Bar Reservations, Careers, Open Workshops
   ======================================== */

/* Responsive styles for new sections */
@media (max-width: 768px) {
    /* Bar Reservations Section */
    .po-bar-reservations .container {
        max-width: 100% !important;
    }

    .po-bar-reservations h2 {
        font-size: 32px !important;
        margin-bottom: 2rem !important;
    }

    .po-bar-reservations > div > div {
        padding: 2rem 1.5rem !important;
    }

    .po-bar-reservations p {
        font-size: 16px !important;
    }

    /* Careers Section */
    .po-careers .container {
        max-width: 100% !important;
    }

    .po-careers h2 {
        font-size: 32px !important;
        margin-bottom: 2rem !important;
    }

    .po-careers > div > div {
        padding: 2rem 1.5rem !important;
    }

    .po-careers p {
        font-size: 16px !important;
    }

    .po-careers-form {
        padding: 1.5rem !important;
    }

    /* Open Workshops Section */
    .po-open-workshops .container {
        max-width: 100% !important;
    }

    .po-open-workshops h2 {
        font-size: 32px !important;
        margin-bottom: 1.5rem !important;
    }

    .po-open-workshops > div > p {
        font-size: 16px !important;
        margin-bottom: 2rem !important;
    }

    /* Make workshop grid single column on mobile */
    .po-open-workshops > div > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .po-open-workshops h3 {
        font-size: 24px !important;
    }

    .po-open-workshops li {
        font-size: 15px !important;
    }

    .po-open-workshops > div > div > div {
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .po-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .po-back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   LOUNGE/RESERVATIONS PAGE STYLES
   ======================================== */

/* Main Page Container */
.po-reservations-page {
    background: linear-gradient(180deg, #fff 0%, rgba(250, 246, 240, 0.3) 100%);
}

/* Guided Workshops Section */
.po-guided-workshops {
    background: linear-gradient(135deg, rgba(138, 110, 140, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

.po-guided-workshops::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(138, 110, 140, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(194, 164, 106, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: sectionGlow 8s ease-in-out infinite;
}

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

.po-guided-workshops h2 {
    font-family: 'National Park', serif !important;
    font-size: 48px !important;
    font-weight: 400 !important;
    color: var(--primary-purple) !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.po-guided-workshops h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-gold), var(--primary-purple));
    border-radius: 2px;
}

.po-guided-workshops > div > div {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 3.5rem !important;
    border-radius: 20px !important;
    box-shadow:
        0 12px 50px rgba(138, 110, 140, 0.12),
        0 0 0 1px rgba(138, 110, 140, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.po-guided-workshops > div > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-gold), var(--primary-purple));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.po-guided-workshops > div > div:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 70px rgba(138, 110, 140, 0.18),
        0 0 0 1px rgba(138, 110, 140, 0.12) !important;
}

/* Drop-In Sessions Section */
.po-drop-in-sessions {
    background: linear-gradient(135deg, rgba(194, 164, 106, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    padding: 100px 0 !important;
    position: relative;
}

.po-drop-in-sessions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(194, 164, 106, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(138, 110, 140, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.po-drop-in-sessions h2 {
    font-family: 'National Park', serif !important;
    font-size: 48px !important;
    font-weight: 400 !important;
    color: var(--primary-purple) !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
    position: relative;
    z-index: 1;
}

.po-drop-in-sessions h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-purple), var(--accent-gold));
    border-radius: 2px;
}

.po-drop-in-sessions > div > div {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 3.5rem !important;
    border-radius: 20px !important;
    box-shadow:
        0 12px 50px rgba(194, 164, 106, 0.12),
        0 0 0 1px rgba(194, 164, 106, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.po-drop-in-sessions > div > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-purple), var(--accent-gold));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.po-drop-in-sessions > div > div:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 70px rgba(194, 164, 106, 0.18),
        0 0 0 1px rgba(194, 164, 106, 0.12) !important;
}

.po-drop-in-sessions ul li {
    padding: 16px 0 !important;
    font-size: 18px !important;
    color: var(--text-gray) !important;
    position: relative;
    padding-left: 40px !important;
    transition: all 0.3s ease;
}

.po-drop-in-sessions ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.po-drop-in-sessions ul li:hover {
    color: var(--primary-purple) !important;
    padding-left: 45px !important;
}

.po-drop-in-sessions ul li:hover::before {
    transform: scale(1.2);
}

/* Bar Reservations Section */
.po-bar-reservations {
    background: #ffffff !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

.po-bar-reservations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 40% 40%, rgba(138, 110, 140, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(194, 164, 106, 0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: sectionGlow 8s ease-in-out infinite;
}

.po-bar-reservations h2 {
    font-family: 'National Park', serif !important;
    font-size: 48px !important;
    font-weight: 400 !important;
    color: var(--primary-purple) !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
    position: relative;
    z-index: 1;
}

.po-bar-reservations h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-gold), var(--primary-purple));
    border-radius: 2px;
}

.po-bar-reservations > div > div {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 3.5rem !important;
    border-radius: 20px !important;
    box-shadow:
        0 12px 50px rgba(138, 110, 140, 0.12),
        0 0 0 1px rgba(138, 110, 140, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.po-bar-reservations > div > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-gold), var(--primary-purple));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.po-bar-reservations > div > div:hover {
    box-shadow:
        0 20px 70px rgba(138, 110, 140, 0.18),
        0 0 0 1px rgba(138, 110, 140, 0.12) !important;
}

/* Common paragraph styles for all sections */
.po-guided-workshops p,
.po-drop-in-sessions p,
.po-bar-reservations p {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: var(--text-gray) !important;
    margin-bottom: 24px !important;
}

/* Responsive Styles for Lounge/Reservations Page */
@media (max-width: 768px) {
    .po-guided-workshops,
    .po-drop-in-sessions,
    .po-bar-reservations {
        padding: 60px 0 !important;
    }

    .po-guided-workshops h2,
    .po-drop-in-sessions h2,
    .po-bar-reservations h2 {
        font-size: 36px !important;
        margin-bottom: 2rem !important;
    }

    .po-guided-workshops > div > div,
    .po-drop-in-sessions > div > div,
    .po-bar-reservations > div > div {
        padding: 2.5rem 1.5rem !important;
    }

    .po-guided-workshops p,
    .po-drop-in-sessions p,
    .po-bar-reservations p {
        font-size: 16px !important;
    }

    .po-drop-in-sessions ul li {
        font-size: 16px !important;
        padding-left: 35px !important;
    }
}

@media (max-width: 480px) {
    .po-guided-workshops h2,
    .po-drop-in-sessions h2,
    .po-bar-reservations h2 {
        font-size: 32px !important;
    }

    .po-guided-workshops > div > div,
    .po-drop-in-sessions > div > div,
    .po-bar-reservations > div > div {
        padding: 2rem 1.25rem !important;
    }
}

/* ========================================
   EXPERIENCES PAGE STYLES
   ======================================== */

.po-experiences-page {
    background: var(--dark-bg);
}

/* Experiences Sections */
.po-experiences-section {
    padding: 100px 0;
    background: var(--dark-bg); /* Cream/beige background for odd sections */
}

/* Even sections (2, 4) get white background */
.po-experiences-section:nth-child(even) {
    background: #ffffff;
}

.po-experiences-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.po-experiences-section-reverse .po-experiences-row {
    direction: rtl;
}

.po-experiences-section-reverse .po-experiences-row > * {
    direction: ltr;
}

.po-experiences-content h2 {
    font-family: 'National Park', serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--primary-purple);
    margin: 0 0 24px 0;
}

.po-experiences-content p {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-gray);
    margin: 0 0 20px 0;
}

.po-experiences-content .po-btn {
    margin-top: 12px;
}

.po-experiences-image {
    margin: 0;
}

.po-experiences-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.po-experiences-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.po-experiences-list li {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 0;
}

.po-experiences-pricing {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #8a6e8c;
    margin: 0 0 20px 0;
}


/* Ensure pricing color and weight override generic paragraph styles within experiences content */
.po-experiences-content .po-experiences-pricing {
    color: #8a6e8c;
    font-weight: 700;
}

/* Closing Section */
.po-experiences-closing {
    background: transparent;
    padding: 80px 0;
    text-align: center;
}

.po-experiences-closing-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700; /* Bold */
    color: var(--primary-purple); /* Purple color */
    margin: 0;
    line-height: 1.4;
}

.po-btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* Responsive Styles for Experiences Page */
@media (max-width: 1024px) {
    .po-experiences-section {
        padding: 80px 0;
    }

    .po-experiences-row {
        gap: 60px;
    }

    .po-experiences-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .po-experiences-section {
        padding: 60px 0;
    }

    .po-experiences-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .po-experiences-section-reverse .po-experiences-row {
        direction: ltr;
    }

    .po-experiences-content h2 {
        font-size: 24px;
    }

    .po-experiences-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .po-experiences-list li {
        font-size: 16px;
        line-height: 24px;
    }

    .po-experiences-pricing {
        font-size: 16px;
        line-height: 24px;
    }

    .po-experiences-closing {
        padding: 60px 0;
    }

    .po-experiences-closing-text {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .po-btn-large {
        padding: 16px 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .po-experiences-section {
        padding: 40px 0;
    }

    .po-experiences-row {
        gap: 30px;
    }

    .po-experiences-content h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .po-experiences-content p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .po-experiences-list li {
        font-size: 15px;
        line-height: 22px;
    }

    .po-experiences-pricing {
        font-size: 15px;
        line-height: 22px;
        margin: 0 0 16px 0;
    }

    .po-experiences-closing {
        padding: 40px 0;
    }

    .po-experiences-closing-text {
        font-size: 20px;
    }
}



/* ========================================
   Mobile layout tweaks (home, experiences, lounge, partnerships, contact)
   ======================================== */
@media (max-width: 768px) {
    /* 1. Home: reduce top spacing before "A Glimpse Inside" */
    .po-home-gallery {
        padding-top: 60px;
    }

    /* 2. Experiences booking: let heading span full width */
    .po-experiences-booking .po-booking-box h2 {
        max-width: 100%;
    }

    /* 3. Lounge - Deli & Coffee Station: text above image */
    #deli-coffee .po-experiences-content {
        order: 1;
    }
    #deli-coffee .po-experiences-image {
        order: 2;
    }

    /* 4. Partnerships - main partnerships section: text above image */
    #partnerships .po-experiences-content {
        order: 1;
    }
    #partnerships .po-experiences-image {
        order: 2;
    }

    /* 5. Contact: tighten spacing & improve icon alignment */
    .po-contact {
        padding-top: 25px;
    }

    .po-contact-info > div {
        align-items: center !important;
    }

    .po-contact-icon {
        margin-top: 0;
    }
}
