/* ========================================================
   🌸 SAVIOR SWEETS — MASTER STYLESHEET
   Clean • Responsive • Production Ready
======================================================== */


/* ========================================================
   🌸 GLOBAL — LUXURY BASE
======================================================== */

body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #4a3b2b;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%,
            #ffffff 0%,
            #f4efe9 55%,
            #efe7de 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 3rem;
    margin: 20px 0;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

p {
    max-width: 620px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.section-divider {
    color: #c79b52;
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.8;
}


/* ========================================================
   🧭 NAVBAR — PROFESSIONAL
======================================================== */

.navbar {
    background: #f7f3ed;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}


/* ================= BRAND (MATCHES LOGO) ================= */

.brand {
    font-family: 'Great Vibes', cursive;
    font-size: 42px; /* Increased size to match logo prominence */
    line-height: 1;
    letter-spacing: 0; /* Reset spacing so script letters connect */
    display: flex;
    align-items: center;
    white-space: nowrap;
    /* This adds the subtle depth seen in the logo */
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.1)); 
}

/* GOLD — Savior */

.brand-gold {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: #a67c52; /* Exact Bronze-Gold from your logo */
    -webkit-text-fill-color: #a67c52;
}

/* PINK — Sweets */

.brand-pink {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: #f68383; /* Exact Rose-Pink from your logo */
    -webkit-text-fill-color: #f7a1b5;
    margin-left: 2px; /* Slight nudge for better script flow */
}


/* ================= NAV LINKS ================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    text-decoration: none;
    color: #4a3b2b;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: #c79b52;
}

/* order button */

.nav-order {
    background: #c79b52;
    color: white !important;
    padding: 8px 18px;
    border-radius: 20px;
}

/* hamburger */

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}


/* ========================================================
   🦸 HERO — SOFT HALO STYLE
======================================================== */

.hero {
    padding: 40px 20px 70px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 620px;
    height: 620px;
    background: radial-gradient(circle,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.7) 40%,
        rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-sub {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-top: 6px;
}

/* ================= LOGO SIZING & RESPONSIVENESS ================= */

.logo {
    display: block;
    width: 1400px;
    max-width: 90%;
    height: auto;

    margin: 0 auto 10px;

    transition: width 0.3s ease;
}

/* ================= MOBILE ADJUSTMENTS ================= */

@media (max-width: 768px) {
    .logo {
        width: 350px;   /* Adjusted size for Mobile Screens */
        margin-bottom: 10px;
    }
    
    h1 {
        font-size: 2rem; /* Shrinks the text so the logo has more room */
    }
}

/* ========================================================
   🔘 BUTTONS
======================================================== */

.btn-primary {
    background: #c79b52;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    box-shadow: 0 6px 18px rgba(199,155,82,0.25);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b6863f;
    transform: translateY(-1px);
}

.btn-secondary {
    border: 2px solid #c79b52;
    color: #c79b52;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #c79b52;
    color: white;
}


/* ========================================================
   🧁 FLAVOR CARDS — PREMIUM FLOAT
======================================================== */

.flavors {
    background: #ffffff;
    padding: 60px 20px;
}

.flavor-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card {
    background: #ffffff;
    width: 260px;
    padding: 26px;
    border-radius: 24px;
    box-shadow:
        0 18px 40px rgba(0,0,0,0.08),
        0 2px 6px rgba(0,0,0,0.04);
    transition: all .35s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 28px 60px rgba(0,0,0,0.12),
        0 6px 16px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    margin-bottom: 12px;
    display: block;
}


/* ========================================================
   📖 STORY
======================================================== */

.story {
    padding: 60px 20px;
}


/* ========================================================
   🦶 FOOTER
======================================================== */

footer {
    background: #4a3b2b;
    color: white;
    padding: 20px;
}


/* ========================================================
   📱 MOBILE — RESPONSIVE SYSTEM
======================================================== */

@media (max-width: 768px) {

    /* brand resize */
    .brand {
        font-size: 32px;
    }

    /* hamburger visible */
    .hamburger {
        display: block;
    }

    /* dropdown menu */
    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 18px;
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
        display: none;
        gap: 14px;
    }

    .nav-links.show {
        display: flex;
    }

    /* hero halo */
    .hero::before {
        width: 420px;
        height: 420px;
        top: -80px;
    }

    /* logo resize */
    .logo {
        width: 260px;
    }

    h1 {
        font-size: 2.2rem;
        padding: 0 10px;
    }
}

@media (max-width: 420px) {

    .brand {
        font-size: 28px;
    }

    .logo {
        width: 230px;
    }

    .hero {
        padding-top: 70px;
    }
}
