/* ============================================ */
/* Old Hollywood Cheesecakes - Art Deco Theme  */
/* Golden Age Glamour: Black, Cream, Gold      */
/* ============================================ */

:root {
    /* Color Palette - Classic Hollywood */
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #f4e4a6;
    --cream: #f5f0e8;
    --cream-dark: #e8dcc8;
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --gray: #4a4a4a;
    --gray-light: #8a8a8a;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.7;
    font-size: 18px;
}

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

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

.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: 120px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hollywood-logo-img:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

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

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

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

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

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

.header-cta {
    padding: 0.75rem 1.75rem;
    background: var(--gold);
    color: var(--black);
    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;
}

.header-cta:hover {
    background: transparent;
    color: var(--gold);
}

/* =============== HERO SECTION =============== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, var(--charcoal) 0%, var(--black) 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px
        );
    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);
    
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: title-glow 3s ease-in-out infinite;
}

.title-sub {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -0.5rem;
}

@keyframes title-glow {
    0%, 100% { text-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 0 50px rgba(212, 175, 55, 0.8), 0 0 80px rgba(212, 175, 55, 0.4); }
}

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

/* Spotlight 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.15), transparent);
    opacity: 0.3;
    animation: spotlight-sweep 8s ease-in-out infinite;
}

.spotlight-1 { left: 10%; animation-delay: 0s; }
.spotlight-2 { left: 45%; animation-delay: 2s; }
.spotlight-3 { left: 80%; animation-delay: 4s; }

@keyframes spotlight-sweep {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* =============== 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(--black);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

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

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

/* =============== 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);
    
    display: block;
    margin-bottom: 1rem;
}

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

/* =============== ABOUT SECTION =============== */
.about-section {
    background: var(--charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

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

/* =============== FLAVORS SECTION =============== */
.flavors-section {
    background: var(--black);
}

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

.flavor-card {
    background: var(--charcoal);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.flavor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    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.2);
}

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

.flavor-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.flavor-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavor-icon .walkstar {
    width: 62px;
    height: 62px;
    display: block;
}

.flavor-icon .walkstar-text {
    fill: #f7f1e3;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}

.flavor-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 700;
}

.flavor-desc {
    font-size: 1rem;
    color: var(--cream-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.flavor-note {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    
}

/* =============== CTA SECTION =============== */
.cta-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    text-align: center;
}

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

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

/* =============== CONTACT SECTION =============== */
.contact-section {
    background: var(--black);
}

.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(--gold);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--cream-dark);
    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);
    
    display: block;
    margin-bottom: 0.5rem;
}

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

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--charcoal);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--cream);
    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);
}

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

/* =============== FOOTER =============== */
footer {
    background: var(--charcoal);
    border-top: 2px solid var(--gold);
    padding: 4rem 0 2rem;
}

.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);
    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);
    
    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);
}

.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(--gray-light);
}

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

    .flavor-icon { width: 58px; height: 58px; }
    .flavor-icon .walkstar { width: 58px; height: 58px; }

    header {
        position: static;
    }

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

    .main-nav {
        gap: 2rem;
    }

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

    .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-star .walkname{ width:150px; height:150px; }

    .flavor-icon { width: 54px; height: 54px; }
    .flavor-icon .walkstar { width: 54px; height: 54px; }

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

    .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;
    }
}




.flavor-name-star .walkname{
    width: 160px;
    height: 160px;
    display: block;
}

.flavor-name-star .walkname-text{
    fill: #f7f1e3;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 0.6px;
    
    
    
}

/* Make cards look right without <h3> */



/* Walk of Fame STAR name tiles (image-based) */
.flavor-name-star{
    width: 190px;
    height: 190px;
    margin: 0 auto 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding-top: -4px;
background-image: url("/images/walk-star.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

/* Optional: slight darkening behind text for readability */
.flavor-name-star::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 52%, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.0) 55%);
    z-index: 1;
}

@media (max-width: 968px){
    .flavor-name-star{ width: 170px; height: 170px; }
    .flavor-name-text{ font-size: 20px; }
}
@media (max-width: 640px){
    .flavor-name-star{ width: 150px; height: 150px; }
    .flavor-name-text{ font-size: 18px; }
}


.flavor-name-star{
    /* ensure text stacks nicely */
    flex-direction: column;
    gap: 0px;
}

margin-top: -14px; /* move 'The' up */
}

margin-top: -7px;
padding: 0 18px;
    text-align: center;
}

/* Responsive font sizing */
@media (max-width: 968px){
    .flavor-name-the{ font-size: 16px; margin-top: -12px; line-height: 1; }
    .flavor-name-main{ font-size: 24px; margin-top: -6px; }
}
@media (max-width: 640px){
    .flavor-name-the{ font-size: 14px; margin-top: -10px; line-height: 1; }
    .flavor-name-main{ font-size: 20px; margin-top: -5px; }
}
