/* ============================================
   MANNA DONUTS — Warm Retro Diner
   1950s Americana meets modern craft bakery
   ============================================ */

:root {
    /* Warm Retro Diner Palette */
    --peach-cream: #FFF3E6;
    --peach-light: #FFEDDA;
    --peach: #FFD4A8;
    --butter: #F5D782;
    --butter-light: #FBE9B0;
    --warm-brown: #B46432;
    --dark-brown: #6B3A1E;
    --rich-brown: #4A2410;
    --coffee: #3D1F0E;
    --cream: #FFFAF4;
    --soft-tan: #E8D5BF;
    --rust: #C4713B;

    /* Functional */
    --text-primary: #3D1F0E;
    --text-secondary: #7A5035;
    --text-light: #A67C5B;

    /* Fonts */
    --font-script: 'Pacifico', cursive;
    --font-display: 'Stint Ultra Expanded', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-serif: 'Libre Baskerville', serif;

    /* Spacing */
    --section-pad: clamp(3rem, 8vw, 6rem);
    --container-max: 1140px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 250, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(180, 100, 50, 0.12);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(74, 36, 16, 0.08);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.75rem clamp(1.25rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-logo {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.logo-script {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--warm-brown);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--dark-brown);
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    gap: 1.5rem;
}

.header-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.header-nav a:hover { color: var(--warm-brown); }

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--warm-brown);
    color: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.header-phone:hover {
    background: var(--dark-brown);
    transform: scale(1.03);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 3rem;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(245, 215, 130, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 212, 168, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(180, 100, 50, 0.08) 0%, transparent 60%),
        var(--peach-cream);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(180, 100, 50, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(180, 100, 50, 0.04) 2px, transparent 2px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(180, 100, 50, 0.1);
    border: 1px solid rgba(180, 100, 50, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    animation: fadeDown 0.8s ease both;
}

.badge-stars {
    color: var(--butter);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--warm-brown);
    letter-spacing: 0.05em;
}

.hero-title {
    margin-bottom: 1rem;
    animation: fadeUp 0.8s ease 0.15s both;
}

.title-script {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    color: var(--warm-brown);
    line-height: 1.1;
    text-shadow: 2px 3px 0 rgba(107, 58, 30, 0.1);
}

.title-donuts {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.6rem);
    letter-spacing: 0.5em;
    color: var(--dark-brown);
    margin-top: -0.25rem;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease 0.45s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-light);
    animation: fadeUp 0.8s ease 0.6s both;
}

.trust-divider {
    width: 4px;
    height: 4px;
    background: var(--peach);
    border-radius: 50%;
}

.hero-photo-strip {
    display: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-primary {
    background: var(--warm-brown);
    color: var(--cream);
    box-shadow: 0 4px 16px rgba(180, 100, 50, 0.3);
}

.btn-primary:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(180, 100, 50, 0.4);
}

.btn-secondary {
    background: rgba(180, 100, 50, 0.1);
    color: var(--warm-brown);
    border: 1.5px solid rgba(180, 100, 50, 0.25);
}

.btn-secondary:hover {
    background: rgba(180, 100, 50, 0.18);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--warm-brown);
    border: 2px solid var(--warm-brown);
}

.btn-outline:hover {
    background: var(--warm-brown);
    color: var(--cream);
}

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

.btn-pulse {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 16px rgba(180, 100, 50, 0.3); }
    50% { box-shadow: 0 4px 28px rgba(180, 100, 50, 0.55); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-brown);
    background: rgba(180, 100, 50, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--rich-brown);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    padding: var(--section-pad) 0;
    background:
        linear-gradient(180deg, var(--cream) 0%, var(--peach-light) 100%);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--peach), var(--butter), var(--peach), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: rgba(255, 250, 244, 0.85);
    border: 1px solid rgba(180, 100, 50, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(74, 36, 16, 0.08);
}

.menu-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.menu-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--dark-brown);
    margin-bottom: 0.6rem;
}

.menu-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   PHOTO BAND
   ============================================ */
.photo-band {
    padding: 0;
    overflow: hidden;
    background: var(--warm-brown);
}

.photo-band-scroll {
    display: flex;
    gap: 0;
}

.photo-band-scroll img {
    width: 25%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.photo-band-scroll img:hover { opacity: 1; }

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(245, 215, 130, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(180, 100, 50, 0.06) 0%, transparent 50%),
        var(--cream);
}

.featured-review {
    background:
        linear-gradient(135deg, rgba(180, 100, 50, 0.04) 0%, rgba(245, 215, 130, 0.08) 100%);
    border: 1px solid rgba(180, 100, 50, 0.12);
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.featured-review::before {
    content: '\201C';
    position: absolute;
    top: -0.15em;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 6rem;
    color: rgba(180, 100, 50, 0.1);
    line-height: 1;
    pointer-events: none;
}

.featured-review-stars {
    color: var(--butter);
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.featured-review p {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-style: italic;
    line-height: 1.8;
    color: var(--text-primary);
    max-width: 640px;
    margin: 0 auto 1.25rem;
}

.featured-review cite {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--warm-brown);
}

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

.review-card {
    background: rgba(255, 250, 244, 0.7);
    border: 1px solid rgba(180, 100, 50, 0.1);
    border-radius: 14px;
    padding: 1.75rem;
}

.review-stars {
    color: var(--butter);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.review-card p {
    font-family: var(--font-serif);
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.review-card cite {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--warm-brown);
}

.reviews-cta { text-align: center; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-pad) 0;
    background:
        linear-gradient(180deg, var(--peach-light) 0%, var(--peach-cream) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, var(--cream), transparent);
    pointer-events: none;
}

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

.about-content .section-eyebrow { margin-bottom: 0.75rem; }
.about-content .section-title { text-align: left; margin-bottom: 1rem; }

.about-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--warm-brown);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.about-photo {
    position: relative;
}

.about-photo img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(74, 36, 16, 0.12);
}

.about-photo-badge {
    position: absolute;
    bottom: -1rem;
    right: 1rem;
    background: var(--warm-brown);
    color: var(--cream);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.3;
    box-shadow: 0 4px 16px rgba(74, 36, 16, 0.2);
}

.about-photo-badge span { display: block; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(180, 100, 50, 0.06) 0%, transparent 50%),
        var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.contact-info .section-title { text-align: left; }

.contact-detail {
    margin-bottom: 1.25rem;
}

.contact-detail h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail p {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
    transition: color 0.2s;
}

.contact-detail a:hover { color: var(--warm-brown); }

.contact-hours h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(180, 100, 50, 0.08);
}

.hours-table td {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--warm-brown);
}

.hours-table .sunday td {
    color: var(--rust);
    font-weight: 600;
}

.hours-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--coffee);
    color: rgba(255, 245, 230, 0.7);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 0.75rem;
}

.footer-brand .logo-script {
    color: var(--butter);
    font-size: 1.8rem;
}

.footer-brand .logo-sub {
    color: rgba(255, 245, 230, 0.5);
    font-size: 0.6rem;
}

.footer-address {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-address a {
    color: rgba(255, 245, 230, 0.7);
    transition: color 0.2s;
}

.footer-address a:hover { color: var(--butter); }

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 245, 230, 0.35);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--warm-brown);
    color: var(--cream);
    padding: 0.85rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 24px rgba(74, 36, 16, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(74, 36, 16, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   RESPONSIVE — TABLET+
   ============================================ */
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-photo-strip {
        display: flex;
        position: absolute;
        right: -2rem;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 1rem;
        z-index: 1;
        opacity: 0.2;
    }

    .photo-strip-item img {
        width: 280px;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
    }
}

/* ============================================
   RESPONSIVE — DESKTOP
   ============================================ */
@media (min-width: 1024px) {
    .header-nav { display: flex; }

    .hero {
        padding: 0;
    }

    .hero-photo-strip {
        opacity: 0.25;
        right: 2rem;
    }

    .photo-strip-item img {
        width: 360px;
        height: 240px;
    }

    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 767px) {
    .header-nav { display: none; }

    .header-phone span { display: none; }
    .header-phone { padding: 0.5rem; }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 5rem 0 2rem;
    }

    .title-script { font-size: 3.2rem; }
    .title-donuts { font-size: 0.85rem; }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }

    .hero-trust {
        flex-direction: column;
        gap: 0.4rem;
    }

    .trust-divider { display: none; }

    /* Photo band mobile */
    .photo-band-scroll {
        flex-wrap: wrap;
    }

    .photo-band-scroll img {
        width: 50%;
        height: 45vw;
    }

    .about-stats {
        justify-content: space-around;
    }

    .floating-cta span { display: none; }
    .floating-cta { padding: 1rem; border-radius: 50%; }
}

/* ============================================
   CUSTOM SCROLLBAR (Desktop)
   ============================================ */
@media (min-width: 768px) {
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb {
        background: var(--soft-tan);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover { background: var(--warm-brown); }
}
