/* ═══════════════════════════════════════════
   Sweet Shake — Shared Stylesheet
   Color Scheme: Burgundy & Cream
   ═══════════════════════════════════════════ */

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

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

/* Fluid images by default; fixed-ratio slots (hero, cards) set height + object-fit below */
img {
    max-width: 100%;
    vertical-align: middle;
}

:root {
    --primary:        #7B1D3C;   /* deep burgundy/rose */
    --primary-dark:   #4A0F23;   /* very dark wine */
    --primary-light:  #F9EAF0;   /* blush/light pink */
    --gold:           #C8825A;   /* warm copper accent */
    --gold-dark:      #A5622A;   /* deeper copper */
    --gold-bright:    #F5C842;   /* yellow gold highlights */
    --white:          #FFFFFF;
    --off-white:      #FAF7F2;   /* warm cream */
    --text:           #2C1810;   /* dark warm brown */
    --text-gray:      #8A7070;   /* warm gray */
    --border:         #EAD5DC;   /* pinkish border */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.8px;
}
.announcement-bar a {
    color: var(--gold-bright);
    text-decoration: none;
    font-weight: 600;
    margin-left: 6px;
}

/* ── NAVIGATION ── */
nav {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(20px, env(safe-area-inset-left)) 0 max(20px, env(safe-area-inset-right));
    height: 80px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(74,15,35,0.08);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}
.logo-sub {
    display: block;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
}
.nav-right { display: flex; align-items: center; gap: 18px; }
a.btn-order {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-order {
    background: var(--primary);
    color: white;
    border: none;
    padding: 11px 24px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}
.btn-order:hover { background: var(--primary-dark); transform: translateY(-1px); }
.menu-toggle { display: none; font-size: 22px; cursor: pointer; color: var(--primary); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    position: relative;
    min-height: 200px;
    height: clamp(220px, 32vw, 320px);
    overflow: hidden;
}
.page-hero img {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.page-hero--focus-left img {
    object-position: 28% center;
}
@media (max-width: 768px) {
    .page-hero--focus-left img {
        object-position: 22% center;
    }
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(74,15,35,0.88) 0%, rgba(74,15,35,0.55) 60%, rgba(74,15,35,0.2) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    padding: 40px 80px;
}
.page-hero-tag {
    display: inline-block;
    background: var(--gold-bright);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 16px;
}
.page-hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
    max-width: 600px;
    line-height: 1.2;
}
.page-hero-overlay p {
    font-size: 15px;
    opacity: 0.87;
    max-width: 520px;
    line-height: 1.7;
}

/* ── BREADCRUMB ── */
.breadcrumb {
    padding: 13px 60px;
    background: var(--off-white);
    font-size: 13px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; }

/* ── BUTTONS ── */
.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123,29,60,0.35);
}
.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 13px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}
.btn-secondary:hover { background: var(--primary); color: white; }
.btn-green {
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}
.btn-green:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ── LAYOUT HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; }
.section { padding: 75px 60px; }
.section-off { background: var(--off-white); }
.section-dark { background: var(--primary-dark); color: white; }
.section-primary { background: var(--primary); color: white; }
.text-center { text-align: center; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 14px;
    color: var(--text);
    line-height: 1.2;
}
.section-header p {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.72;
}
.divider {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ── SHARED FORM STYLES ── */
.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 7px;
    color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 13px 16px;
    border: 1px solid var(--border);
    background: white;
    color: var(--text);
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── CARD SHARED ── */
.card-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}
.price { font-size: 15px; font-weight: 700; color: var(--primary); }

/* ── FOOTER ── */
footer { background: var(--primary-dark); color: rgba(255,255,255,0.78); }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 65px 60px 45px;
    max-width: 1280px;
    margin: 0 auto;
}
.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: white;
    display: block;
    margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 22px; }
.footer-legal {
    font-style: normal;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin: 0;
}
.footer-legal p { margin: 0 0 6px; font-size: 13px; }
.footer-legal a { color: var(--gold-bright); text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }
.footer-col h4 {
    color: white; font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.62);
    text-decoration: none; font-size: 14px; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-bright); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 60px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; max-width: 1280px; margin: 0 auto;
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold-bright); }

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */

/* Large tablet */
@media (max-width: 1100px) {
    nav { padding: 0 max(24px, env(safe-area-inset-left)) 0 max(24px, env(safe-area-inset-right)); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .page-hero-overlay { padding: 40px 40px; }
    .page-hero-overlay h1 { font-size: 38px; }
}

/* Tablet */
@media (max-width: 900px) {
    .nav-links { gap: 0; }
    .nav-links a { font-size: 11.5px; padding: 6px 10px; }
    .section { padding: 55px 30px; }
    .breadcrumb { padding: 12px 30px; }
}

/* Mobile */
@media (max-width: 768px) {
    nav { padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right)); height: 70px; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .page-hero { height: 240px; }
    .page-hero-overlay { padding: 24px 24px; align-items: center; text-align: center; }
    .page-hero-overlay h1 { font-size: 26px; max-width: 100%; }
    .page-hero-overlay p { font-size: 13px; }
    .page-hero-tag { font-size: 10px; }
    .breadcrumb { padding: 10px 20px; font-size: 12px; }
    .section { padding: 44px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 28px; }
    .section-header p { font-size: 14px; }
    .footer-top { grid-template-columns: 1fr 1fr; padding: 36px 20px 28px; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 18px max(16px, env(safe-area-inset-left)) max(22px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-right)); }
    .footer-bottom-links { justify-content: center; }
}

/* Small mobile */
@media (max-width: 480px) {
    .page-hero { height: 200px; }
    .page-hero-overlay h1 { font-size: 22px; }
    .section { padding: 36px 16px; }
    .footer-top { grid-template-columns: 1fr; }
    .announcement-bar { font-size: 11px; padding: 8px 16px; }
    nav { padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right)); }
    .logo-name { font-size: 18px; }
}
