/* ============================================================
    VARIABLES
   ============================================================ */
:root {
    --red: #dc4553;
    --red-dark: #b8323f;
    --red-light: #e8707c;
    --orange: #f5941e;
    --gold: #f2c230;
    --maroon: #431217;
    --maroon-dark: #2c0c0f;
    --faded:#fdf8f27d;
  --cream: #fdf8f2;        /* page background — warm, not stark white */
  --warm-gray: #f0e8dd;    /* placeholder boxes — beige, not cold gray */
    --warm-gray-border: #ddd0bd;

    --text-dark: #2b2320;
    --white: #ffffff;

    --font-script: 'Pacifico', cursive;
    --font-script-light: 'Dancing Script', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --shadow-soft: 0 8px 24px rgba(67, 18, 23, 0.10);
    --shadow-lift: 0 14px 32px rgba(67, 18, 23, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    padding-top: 4em;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position:fixed;
    top:0;
    width: 100%;
    z-index: 1000; /* forces it above any other positioned element, no matter DOM order */
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5em;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em; /* slightly opened up — reads more "menu-like" */
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.hamburger,
.home-btn,
.cart-btn {
    background: none;
    border: none;
    font-size: 1.3em;
    color: var(--white);
    cursor: pointer;
}
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4px;
}


.main-background {
    position: relative;    /* needed so the ::before below can position itself relative to .hero, not the whole page */
    overflow:hidden;      /* keeps the image from spilling past .hero's rounded corners/edges, if you add any later */
    width: 100%;
}

.main-background::before {
    content: '';           /* pseudo-elements need this or they won't render at all */
    position:absolute;
    inset: 0;              /* shorthand for top:0; right:0; bottom:0; left:0 — fills the whole .hero box */
    z-index: -1;           /* pushes it behind .hero-left / .hero-right, which have no z-index of their own */

    /* two backgrounds stacked: the cream gradient sits ON TOP of the photo
        (multiple backgrounds paint front-to-back, left-to-right in the list),
        dimming it enough that your text stays readable */
    background:
        linear-gradient(var(--faded), var(--faded)),
        url('/src/assets/images/newHP-img/main-background-image.jpeg');   /* swap in your actual filename/path */
    background-size:cover;
    background-position: center;
    }

/* ============================================================
   LOGO
   ============================================================ */
.logo-section {
    background: none;
    display: flex;
    justify-content: center;
    padding: 20px 0px;
}

/* soft warm glow behind the logo instead of it sitting flat on cream */
.logo-section::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(245, 148, 30, 0.12) 0%, rgba(245, 148, 30, 0) 70%);
    z-index: 0;
}

.logo-img {
    width: clamp(120px, 18vw, 200px);
    height: auto;
    position: relative;
    z-index: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: 30px 0 60px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers each child horizontally, as a whole block */
    text-align: center;  /* centers the text INSIDE those blocks (headings, paragraphs) */
}

.hero-eyebrow {
    font-family: var(--font-script-light);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text-dark);
}

.hero-heading {
    font-family: var(--font-script);
    color: var(--red-dark);
    font-size: clamp(3.2rem, 10vw, 5.8rem);
    line-height: 1;
    margin: 6px 0 26px;
    text-shadow: 2px 2px 0 rgba(242, 194, 48, 0.25);
    padding-bottom: 0.5em;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* .hero-buttons is its own flex row — align-items on the
                                parent centers this whole group, but doesn't touch how
                                its own children line up inside it */
    gap: 16px;
    margin-bottom: 22px;
}

.or-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--maroon-dark);
    margin-bottom: 8px;
}

.hero-question {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 1.9rem);
    margin-bottom: 22px;
}

.btn-reserve {
    line-height: 1.3;
    padding: 12px 34px;
    width: 35%;
    border-radius: 50px;
}

.hero-right {
    display: flex;
    justify-content: center;
}

/* the walk-in card was flat before — gradient + deeper shadow gives it
   presence instead of looking like a colored rectangle */
.walkin-card {
    background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
    border: 3px solid var(--gold);
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
    padding: 34px 26px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lift);
}

.walkin-label {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    opacity: 0.85;
}

.walkin-today {
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 2.7rem);
    margin: 12px 0 26px;
}

.walkin-hours {
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 30px;
    border-radius: 30px;
    cursor: pointer;
    border: 2px solid var(--red);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

/* gradient fill instead of flat red — same color identity, more depth */
.btn-filled {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
}

.btn-filled:hover {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
}

.btn-outline {
    background: var(--white);
    color: var(--red);
}

.btn-outline:hover {
    background: #fff2f2;
}

/* ============================================================
   SPECIALS
   ============================================================ */
.specials {
    padding: 30px 0 70px;
}

.specials-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 26px;
    text-align: center;
    position: relative;
}

/*the small gold decoration*/
.specials-heading::before,
.specials-heading::after {
    content: '';
    display: inline-block;
    width: 36px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 14px;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.special-card {
    background: var(--white);
    border: 1px solid var(--warm-gray-border);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.special-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.special-image {
    background: var(--warm-gray);
    border: 1px solid var(--warm-gray-border);
    border-radius: 4px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    color: #8a7a6a;
    padding: 10px;
    margin-bottom: 12px;
}

.special-desc {
    font-size: 0.72rem;
    color: #7d6f62;
    text-align: center;
    margin-bottom: 14px;
}

.btn-add-order {
    padding: 8px 18px;
    font-size: 0.75rem;
    align-self: center;
    width: fit-content;
    white-space: nowrap;
}

.plus {
    margin-left: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: linear-gradient(180deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    color: var(--white);
    padding: 44px 0;
    margin-top: 20px;
    border-top: 3px solid var(--gold);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold);
}

.footer-col p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .btn-reserve {
        width: auto;
    }
}
@media (max-width: 640px) {
    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .special-card {
        padding: 10px;
    }
    .special-desc {
        font-size: 0.68rem;
    }
}