@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-cream: #FAF6E3;
    --green-dark: #1F722E;
    --green-btn: #2A883A;
    --red-brand: #CC1226;
    --gold: #FFB800;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    --border-light: #EBE6D8;

    --f-serif: 'Playfair Display', serif;
    --f-sans: 'Inter', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--f-sans);
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* SHARED / UTILITIES */
.mt-4 { margin-top: 16px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.btn-red-full {
    background: var(--red-brand);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-green-full {
    background: var(--green-dark); 
    color: var(--white); 
    text-align: center;
    padding: 14px; 
    border-radius: 8px; 
    font-weight: 700;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center; gap: 8px; 
    cursor: pointer;
}
.btn-yellow-full {
    background: var(--gold); 
    color: var(--text-dark); 
    text-align: center;
    padding: 14px; 
    border-radius: 8px; 
    font-weight: 800;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center; gap: 8px; 
    cursor: pointer;
}
.btn-green-outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    text-align: center;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    display: block;
}

/* NAV */
.top-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: var(--white);
    max-width: 500px; /* Phone format */
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}
.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}
.logo-img:hover {
    transform: scale(1.05);
}
.nav-links {
    display: flex;
    gap: max(8px, 2vw);
    align-items: center;
    justify-content: center;
    width: 100%;
}
.nav-links a {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a.nav-logo {
    margin: 0 4px; /* Slight breathing room for the logo */
}
.nav-links a:hover {
    color: var(--red-brand);
}
/* CSS LOGO */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    user-select: none;
    cursor: pointer;
}
.bl-crown {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-bottom: -3px;
}
.bl-main {
    color: #084C2E;
    font-family: var(--f-serif);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.bl-main span {
    font-family: var(--f-serif);
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}
.bl-mid {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1px;
    margin-bottom: 3px;
}
.bl-line-g {
    height: 1.5px;
    width: 25px;
    background: linear-gradient(to right, transparent, #084C2E);
}
.bl-line-r {
    height: 1.5px;
    width: 25px;
    background: linear-gradient(to left, transparent, #CC1226);
}
.bl-pizza-small {
    color: #C09A4D;
    font-family: var(--f-sans);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.bl-tagline {
    color: #CC1226;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 0.8rem;
    font-weight: 700;
}
.footer-logo-wrapper .bl-main { color: #FFFFFF; }
.footer-logo-wrapper .bl-tagline { color: #FFFFFF; }
.footer-logo-wrapper .bl-line-g { background: linear-gradient(to right, transparent, #FFFFFF); }
.footer-logo-wrapper .bl-line-r { background: linear-gradient(to left, transparent, #FFFFFF); }
.btn-green-pill {
    background: var(--green-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(31,114,46,0.2);
}

/* HERO */
.hero { max-width: 500px; margin: 0 auto; position: relative; }
.hero-image { height: 260px; position: relative; }
.hero-img-cover { width: 100%; height: 100%; object-fit: cover; }
.hero-green-block {
    background: var(--green-dark);
    color: var(--white);
    padding: 24px 20px 30px;
}
.hero-trust-stars {
    display: flex; align-items: center; gap: 4px;
    color: var(--gold); font-size: 0.8rem;
    margin-bottom: 16px; font-weight: 600;
}
.hero-trust-stars span { color: var(--white); margin-left: 6px; font-weight: 500; font-size: 0.75rem;}
.hero-headline {
    font-family: var(--f-serif);
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 16px;
}
.hero-headline em {
    color: var(--gold);
    font-size: 3rem;
}
.hero-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px;}
.hero-chips {
    display: flex; gap: 12px; font-size: 0.65rem; color: rgba(255,255,255,0.8);
    flex-wrap: wrap; margin-top: 10px; font-weight: 600;
}
.hero-chips span { display: flex; align-items: center; gap: 4px; }
.hero-chips i { color: var(--gold); font-size: 0.8rem; }

/* SECTIONS */
.section-locations, .section-menu, .section-reviews {
    max-width: 500px; margin: 0 auto; padding: 36px 18px;
}
.section-header { margin-bottom: 20px; }
.section-title {
    font-family: var(--f-serif); font-size: 1.8rem; color: var(--text-dark); margin-bottom: 6px;
}
.section-desc { font-size: 0.85rem; color: var(--text-grey); }

/* PAGE TABS */
.page-tabs {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}
.pt-item {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
    font-size: 0.65rem; font-weight: 800; color: var(--text-grey); letter-spacing: 0.5px;
}
.pt-item i { font-size: 1.3rem; }
.pt-item.active { color: var(--text-dark); }
.pt-item.active i { color: var(--text-dark); }
.pt-item.text-red { color: var(--red-brand); }
.pt-item.text-red i { color: var(--red-brand); }

/* LOCATIONS */
.loc-card-active {
    background: var(--white); 
    border-radius: 12px; 
    padding: 18px; 
    margin-bottom: 24px;
}
.loc-card-active.is-open {
    border: 1.5px solid var(--green-dark);
    box-shadow: 0 4px 20px rgba(31,114,46,0.08);
}
.loc-card-active.is-closed {
    border: 1.5px solid var(--red-brand);
    box-shadow: 0 4px 20px rgba(204,18,38,0.08);
}

.badge-status {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.6rem; font-weight: 800; padding: 5px 10px; border-radius: 100px;
    margin-bottom: 12px; letter-spacing: 0.5px;
}
.badge-status.is-open {
    background: #E8F5E9; color: var(--green-dark);
}
.badge-status.is-closed {
    background: #FFEBEE; color: var(--red-brand);
}

.lco-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px;}
.lco-name { font-weight: 800; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 2px;}
.lco-addr { font-size: 0.75rem; color: var(--text-grey); }
.lco-rec { background: var(--gold); color: var(--text-dark); font-size: 0.6rem; padding: 4px 8px; border-radius: 4px; font-weight: 800; }

.lco-status { font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.lco-status.is-open { color: var(--green-dark); }
.lco-status.is-open::before { content: ''; width: 6px; height: 6px; background: var(--green-dark); border-radius: 50%; }
.lco-status.is-closed { color: var(--red-brand); }
.lco-status.is-closed::before { content: ''; width: 6px; height: 6px; background: var(--red-brand); border-radius: 50%; }

.badge-soon {
    display: inline-flex; align-items: center; gap: 5px;
    background: transparent; border: 1px solid #D5D0C0; color: var(--text-grey);
    font-size: 0.6rem; font-weight: 800; padding: 4px 10px; border-radius: 100px;
    margin-bottom: 12px; letter-spacing: 0.5px;
}
.soon-list { display: flex; flex-direction: column; gap: 10px; }
.loc-card-soon {
    background: var(--white); border: 1px solid var(--border-light);
    border-radius: 10px; padding: 14px 18px;
    display: flex; justify-content: space-between; align-items: center;
}
.lcs-name { font-weight: 700; font-size: 0.85rem; margin-bottom: 2px;}
.lcs-addr { font-size: 0.7rem; color: var(--text-grey); }
.lcs-pill { background: #FFF9E6; color: #B38600; font-size: 0.6rem; font-weight: 800; padding: 4px 10px; border-radius: 100px; border: 1px solid #F5E6B3;}

/* MENU GRID */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.menu-item-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-light); box-shadow: 0 4px 12px rgba(0,0,0,0.04);}
.menu-item-card img { width: 100%; height: 90px; object-fit: cover; }
.mic-info { padding: 10px 8px; text-align: left; }
.mic-info h3 { font-size: 0.7rem; font-weight: 800; margin-bottom: 4px; }
.mic-info p { font-size: 0.55rem; color: var(--text-grey); line-height: 1.3;}

/* PROMISE GREEN */
.section-promise-green {
    background: var(--green-dark); color: var(--white);
    padding: 40px 18px; max-width: 500px; margin: 0 auto;
    display: flex; justify-content: space-between; gap: 12px; text-align: center;
}
.promise-item { flex: 1; }
.promise-item i { font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.promise-item h3 { font-size: 0.7rem; font-weight: 800; margin-bottom: 4px; }
.promise-item p { font-size: 0.55rem; color: rgba(255,255,255,0.8); line-height: 1.4;}



/* REVIEWS */
.reviews-list { display: flex; flex-direction: column; gap: 14px; }
.review-card {
    background: var(--white); border: 1px solid var(--border-light);
    border-radius: 12px; padding: 16px; box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}
.rc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rc-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.8rem; }
.red-av { background: #E5002B; }
.red-av-2 { background: #D81B60; }
.rc-user { flex: 1; }
.rc-name { font-size: 0.85rem; font-weight: 700; line-height: 1.2; margin-bottom: 2px;}
.rc-stars { color: var(--gold); font-size: 0.7rem; }
.rc-google { background: #4285F4; color: #fff; font-size: 0.6rem; font-weight: 700; padding: 3px 6px; border-radius: 4px; }
.review-card p { font-size: 0.85rem; font-style: italic; color: var(--text-dark); line-height: 1.5; font-weight: 500;}

/* FINAL CTA RED */
.section-final-red {
    background: var(--red-brand); color: var(--white);
    padding: 48px 24px; text-align: left; max-width: 500px; margin: 0 auto;
}
.eyebrow { font-size: 0.65rem; font-weight: 800; letter-spacing: 1px; opacity: 0.9; margin-bottom: 8px; display: block;}
.section-final-red h2 { font-family: var(--f-serif); font-size: 2.2rem; line-height: 1.15; margin-bottom: 16px;}

/* FOOTER COMPACT PRO */
.footer-compact {
    background: #111; color: var(--white);
    padding: 30px 24px 24px; max-width: 500px; margin: 0 auto;
    font-size: 0.75rem; text-align: center;
}
.fc-top {
    display: flex; justify-content: space-between; align-items: center; 
    margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #222;
}
.fc-logo { height: 28px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));}
.fc-social { display: flex; gap: 12px; }
.fc-social a { color: var(--white); font-size: 1.25rem; transition: color 0.2s; opacity: 0.8;}
.fc-social a:hover { opacity: 1; }

.fc-meta {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    color: #999; margin-bottom: 30px; font-weight: 500; font-size: 0.7rem;
}
.fc-meta i { font-size: 0.8rem; }
.fc-dot { color: #444; font-size: 0.45rem; }

.fc-bottom {
    display: flex; flex-direction: column; gap: 8px; color: #666; font-size: 0.65rem;
}
.fc-creator a {
    color: var(--gold); text-decoration: none; font-weight: 800; letter-spacing: 0.5px;
}
.fc-creator a:hover { text-decoration: underline; }
