/* Golden Cherry Events - Event Planning Website */
/* No database • Static HTML/CSS/JS */

:root {
    --color-cream: #faf8f5;
    --color-cream-dark: #f0ebe3;
    --color-gold: #b8860b;
    --color-gold-light: #d4a84b;
    --color-gold-dark: #8b6914;
    --color-wine: #6b2d3c;
    --color-wine-light: #8a3d4f;
    --color-charcoal: #2c2c2c;
    --color-charcoal-light: #4a4a4a;
    --color-text: #3d3d3d;
    --color-text-muted: #6b6b6b;
    --color-navy: #1a1a2e;
    --color-navy-light: #252542;
    --color-ivory: #faf8f0;
    --color-ivory-soft: rgba(250, 248, 240, 0.85);
    --color-rose: #c41e3a;
    --color-rose-dark: #a01830;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', -apple-system, sans-serif;
    --shadow-soft: 0 4px 20px rgba(44, 44, 44, 0.08);
    --shadow-medium: 0 8px 30px rgba(44, 44, 44, 0.12);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

a {
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: color var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fffff0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem 0.75rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 88px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li a {
    display: block;
    padding: 0.4rem 1rem;
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-gold);
    background: rgba(184, 134, 11, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition);
}

/* Hero */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7.5rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Theater background: video with static image fallback */
.hero-theater .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url('images/hero-backdrop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-theater .hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-theater .hero-content {
    position: relative;
    z-index: 10;
    transform: translateY(-40px);
}

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

.hero-tagline {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5c1820;
    margin-bottom: 1rem;
}

.hero h1 {
    color: #1a237e;
    margin: 0 0 1.5rem;
    white-space: nowrap;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 700;
    color: #5c1820;
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (max-width: 900px) {
    .hero-desc {
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        white-space: normal;
    }
}

.hero-cta-section {
    padding: 1rem 1.5rem;
    background: var(--color-cream);
    text-align: center;
}

.hero-cta-section .container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-section .btn {
    margin: 0;
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-cream-dark), transparent);
    pointer-events: none;
    z-index: 5;
}

.hero-theater .hero-decoration {
    background: linear-gradient(to top, rgba(250, 248, 245, 0.6) 0%, transparent 100%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-gold);
    color: white;
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-charcoal);
}

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

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Services Preview */
.services-preview {
    padding: 2.5rem 0 4rem;
    background: white;
}

.services-preview h2,
.why-us h2,
.cta-section h2 {
    text-align: center;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.section-hero-text {
    text-align: center;
    margin-bottom: 2rem;
}

.section-hero-text .section-tagline {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-wine);
    margin: 0 0 0.5rem;
}

.section-hero-text .section-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--color-navy);
    margin: 0 0 1rem;
}

.section-hero-text .section-desc {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--color-cream);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(184, 134, 11, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--color-charcoal);
    margin: 0 0 0.5rem;
}

.service-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Why Us */
.why-us {
    padding: 5rem 0;
    background: var(--color-cream-dark);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature {
    position: relative;
    padding-left: 3rem;
}

.feature-num {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    opacity: 0.7;
}

.feature h3 {
    color: var(--color-charcoal);
    margin: 0 0 0.5rem;
}

.feature p {
    margin: 0;
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--color-wine);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-section p {
    margin: 0 0 1.5rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--color-gold);
}

.cta-section .btn-primary:hover {
    background: var(--color-gold-light);
}

/* Page Hero (inner pages) */
.page-hero {
    padding: 8.5rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
    position: relative;
    overflow: hidden;
}

/* Theater style for page heroes - same backdrop as home */
.page-hero-theater {
    background-image: url('images/hero-backdrop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-theater::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(250, 248, 245, 0.7) 0%, rgba(250, 248, 245, 0.85) 100%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--color-charcoal);
    margin: 0 0 0.5rem;
    position: relative;
    z-index: 1;
}

.page-hero-themed h1 {
    color: #5c1820;
}

.page-hero.page-hero-themed p {
    color: #1a1a2e !important;
}

.page-hero p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Services Detail */
.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.service-detail-card:last-child {
    margin-bottom: 0;
}

.service-detail-content h2 {
    color: var(--color-charcoal);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gold);
}

.service-detail-content ul {
    margin: 1rem 0 0;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
}

.service-detail-content li {
    margin-bottom: 0.5rem;
}

/* About */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2,
.about-values h2 {
    color: var(--color-charcoal);
    margin: 0 0 1rem;
}

.about-text p,
.about-values p {
    margin: 0 0 1rem;
    color: var(--color-text-muted);
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    color: var(--color-text-muted);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: var(--color-charcoal);
    display: block;
    margin-bottom: 0.25rem;
}

/* Contact */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--color-charcoal);
    margin: 0 0 1rem;
}

.contact-info > p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

.contact-details a {
    color: var(--color-gold-dark);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--color-charcoal);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-cream-dark);
    border-radius: 4px;
    background: var(--color-cream);
    transition: border-color var(--transition);
}

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

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Gallery */
.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-gold) 20%, var(--color-wine) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.gallery-caption {
    padding: 1rem 0 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
}

.gallery-note {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--color-cream-dark);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Under Construction */
.under-construction {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
    background-image: url('images/hero-backdrop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.under-construction::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(250, 248, 245, 0.5) 0%, rgba(250, 248, 245, 0.75) 100%);
    pointer-events: none;
}

.construction-content {
    text-align: center;
    max-width: 520px;
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 12px;
}

.construction-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(184, 134, 11, 0.06) 20px,
        rgba(184, 134, 11, 0.06) 40px
    );
    pointer-events: none;
}

.construction-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    background: rgba(184, 134, 11, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.construction-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-charcoal);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.construction-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0 0 2rem;
}

.construction-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.construction-decoration .cherry {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.construction-decoration .cherry:last-child {
    animation-delay: 1.5s;
}

.construction-decoration .sparkle {
    font-size: 1.25rem;
    color: var(--color-gold);
    animation: sparkle 2s ease-in-out infinite;
}

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

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.construction-progress {
    width: 100%;
}

.progress-bar {
    height: 4px;
    background: var(--color-cream-dark);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 20%; margin-left: 0; }
    50% { width: 60%; margin-left: 20%; }
    100% { width: 20%; margin-left: 0; }
}

.progress-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem 2rem;
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer .logo img {
    height: 60px;
    filter: brightness(1.05);
}

.footer-brand p {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-copy {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.6;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: center;
        position: relative;
    }

    .logo img {
        height: 64px;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 240, 0.98);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        box-shadow: none;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 99;
        justify-content: flex-start;
    }

    .nav-links.open {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li a {
        padding: 0.75rem 1rem;
        text-align: center;
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding: 7rem 1.5rem 4rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
