/* ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&display=swap');

/* Old Hollywood Cheesecakes - Golden Girls Edition  */
/* Warm Miami Glamour with Tropical Elegance         */
/* ============================================ */

:root {
    /* Color Palette - Golden Girls Miami Glamour */
    --cream: #faf5f0;
    --cream-dark: #f0e6d9;
    --cream-light: #fffcf8;
    --gold: #d4af37;
    --gold-light: #f0d982;
    --gold-dark: #b8941e;
    --peach: #ffd4b8;
    --coral: #ff9a76;
    --seafoam: #a8d5ba;
    --mint: #d4ebe3;
    --lavender: #e6d5f0;
    --rose: #f5d7e3;
    --charcoal: #3a3a3a;
    --warm-brown: #8b6f47;
    --white: #ffffff;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(to bottom, var(--cream-light), var(--cream));
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 18px;
}

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

/* =============== HEADER =============== */
header {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border-bottom: 3px solid var(--gold);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

@media (max-width: 768px) {
    header {
        position: static;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Hollywood Sign Logo Image */
.logo-link {
    text-decoration: none;
    display: block;
}

.hollywood-logo-img {
    height: 260px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: sepia(0.15) saturate(1.1);
}

.hollywood-logo-img:hover {
    transform: scale(1.02);
    filter: sepia(0.25) saturate(1.2);
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 3rem;
}

.main-nav a {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--gold-dark);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    padding: 0.75rem 1.75rem;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.header-cta:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* =============== HERO SECTION =============== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--peach) 0%, var(--cream) 50%, var(--mint) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(212, 175, 55, 0.03) 40px,
            rgba(212, 175, 55, 0.03) 80px
        );
    pointer-events: none;
}

/* Tropical palm shadow decoration */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 300px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(168, 213, 186, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
    text-shadow: 2px 2px 0 rgba(212, 175, 55, 0.2);
}

.title-sub {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    margin-top: -0.5rem;
}

.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: var(--warm-brown);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Lanai-inspired decoration */
.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.spotlight {
    position: absolute;
    bottom: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.08), transparent);
    opacity: 0.5;
}

.spotlight-1 { left: 10%; }
.spotlight-2 { left: 45%; }
.spotlight-3 { left: 80%; }

/* =============== BUTTONS =============== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-dark);
}

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

/* =============== SECTIONS =============== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--gold-dark);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.05em;
}

/* =============== ABOUT SECTION =============== */
.about-section {
    background: linear-gradient(to bottom, var(--white), var(--cream-light));
    border-top: 1px solid var(--gold-light);
    border-bottom: 1px solid var(--gold-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--warm-brown);
    line-height: 1.9;
}

/* =============== FLAVORS SECTION =============== */
.flavors-section {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--peach) 50%, var(--cream-light) 100%);
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.flavor-card {
    background: var(--white);
    border: 2px solid var(--gold-light);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.flavor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.flavor-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
}

.flavor-card:hover::before {
    transform: scaleX(1);
}

.flavor-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, var(--white) 0%, var(--cream-light) 100%);
}

/* Walk of Fame STAR name tiles */
.flavor-name-star {
    width: 190px;
    height: 190px;
    margin: 0 auto 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/images/walk-star.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    filter: hue-rotate(-10deg) saturate(1.1);
}

.flavor-name-star::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 52%, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0.0) 55%);
    z-index: 1;
}

.flavor-name-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 100%;
    padding: 0 14px;
    text-align: center;
    z-index: 2;
}

.flavor-name-main {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.05;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-top: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.flavor-desc {
    font-size: 1.05rem;
    color: var(--warm-brown);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.flavor-note {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold);
    text-transform: uppercase;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.05), transparent);
}

/* =============== CTA SECTION =============== */
.cta-section {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--cream-light);
    margin-bottom: 2.5rem;
}

/* =============== CONTACT SECTION =============== */
.contact-section {
    background: linear-gradient(to bottom, var(--cream-light), var(--mint));
}

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

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--warm-brown);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
}

.contact-label {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border: 2px solid var(--gold-light);
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--cream-light);
    border: 1px solid var(--gold-light);
    color: var(--charcoal);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

/* =============== FOOTER =============== */
footer {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--warm-brown) 100%);
    border-top: 3px solid var(--gold);
    padding: 4rem 0 2rem;
    color: var(--cream);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-style: italic;
    color: var(--cream-dark);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-column a,
.footer-column p {
    display: block;
    color: var(--cream-dark);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.art-deco-border {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, 
        transparent, 
        var(--gold) 20%, 
        var(--gold) 80%, 
        transparent
    );
    margin-bottom: 2rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--cream-dark);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 968px) {
    .flavor-name-star {
        width: 170px;
        height: 170px;
    }

    .flavor-name-main {
        font-size: 14px;
        letter-spacing: 0.2px;
    }

    header {
        position: static;
    }

    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-nav {
        gap: 2rem;
    }

    .hollywood-logo-img {
        height: 180px;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 3.5rem;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .flavor-name-star { 
        width: 150px; 
        height: 150px; 
    }
    
    .flavor-name-main { 
        font-size: 13px; 
        letter-spacing: 0.2px;
    }

    .hollywood-logo-img {
        height: 150px;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .title-main {
        font-size: 2rem;
    }

    .title-sub {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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