/* Color Palette & Variables */
:root {
    --cream: #FFFDF7;
    --pastel-pink: #FCE4EC;
    --dark-pink: #F48FB1;
    --chocolate: #4E342E;
    --light-chocolate: #6D4C41;
    --white: #FFFFFF;
    --whatsapp-green: #25D366;
}

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

html {
    font-size: 15px; 
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--chocolate);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--chocolate);
}

h3 {
    font-size: 1.2rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--chocolate);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(78, 52, 46, 0.15);
}

.btn-primary:hover {
    background-color: var(--light-chocolate);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--pastel-pink);
    color: var(--chocolate);
    border: 1px solid var(--dark-pink);
}

.btn-secondary:hover {
    background-color: var(--dark-pink);
    color: var(--white);
}

/* Urgency Banner */
.urgency-banner {
    background-color: var(--dark-pink);
    color: var(--white);
    text-align: center;
    padding: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex-wrap: nowrap;
    gap: 10px;
}

/* PREMIUM HEADER LOGO & TEXT */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

a.logo-brand img {
    height: 100px !important;
    width: 100px !important;
    max-height: 100px !important;
    max-width: 100px !important;
    object-fit: contain !important;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chocolate);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--chocolate);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--dark-pink);
}

.nav-btn { 
    padding: 10px 22px; 
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255,253,247,0.7), rgba(255,253,247,0.9)), url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?auto=format&fit=crop&w=1200&q=80') center/cover;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--chocolate);
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    font-size: 1.15rem !important;
    color: var(--dark-pink);
    margin-bottom: 25px !important;
}

.btn-large {
    font-size: 1.05rem;
    padding: 12px 30px;
    background-color: var(--whatsapp-green);
    color: white;
}
.btn-large:hover { background-color: #1ebe57; }

/* About Section */
.about { 
    padding: 60px 5%; 
    background-color: var(--white); 
}

.about-container { 
    max-width: 800px;
    margin: 0 auto; 
    text-align: center;
}

.about-text h2 { 
    margin-bottom: 25px;
}

.founder-intro-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--pastel-pink);
    padding: 8px 25px 8px 8px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(78, 52, 46, 0.08);
}

.founder-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.founder-intro-box p {
    margin: 0 !important;
    font-size: 1.1rem;
    color: var(--chocolate);
}

.about-text p { 
    margin-bottom: 15px; 
    font-size: 1rem; 
    color: var(--light-chocolate);
    line-height: 1.8;
}

/* Features & Collections */
.features { padding: 50px 5%; background-color: var(--pastel-pink); text-align: center; }
.feature-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 25px; }
.feature-card { background: var(--white); padding: 15px; border-radius: 12px; width: 160px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.feature-card i { font-size: 1.6rem; color: var(--dark-pink); margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; }

.collection { padding: 60px 5%; }
.cake-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; }
.cake-card { background: var(--white); border-radius: 15px; padding: 15px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; }
.cake-card:hover { transform: translateY(-5px); }
.cake-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
.cake-card .price { color: var(--dark-pink); font-weight: 600; margin-bottom: 12px; font-size: 0.95rem; }

/* Forms & Reviews */
.order-form-section { padding: 60px 5%; background-color: var(--pastel-pink); }
.form-container { max-width: 450px; margin: 0 auto; background: var(--white); padding: 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(78, 52, 46, 0.08); }
.form-container h2 { font-size: 1.6rem; }
form input, form select, form textarea { width: 100%; padding: 10px 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 0.9rem; }
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--dark-pink); }

.reviews { padding: 60px 5%; text-align: center; background-color: var(--white); }
.review-card { max-width: 550px; margin: 0 auto; background: var(--pastel-pink); padding: 25px; border-radius: 15px; font-style: italic; font-size: 0.95rem; }
.stars { color: #FFD700; margin: 8px 0; font-size: 0.9rem; }

/* MAP SECTION */
.map-section {
    padding: 60px 5%;
    text-align: center;
    background-color: var(--white);
    position: relative;
}

.map-badge {
    display: inline-block;
    background: var(--chocolate);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(78, 52, 46, 0.15);
}

.map-section p {
    color: var(--light-chocolate);
    margin-bottom: 30px;
    font-style: italic;
    font-size: 0.95rem;
}

.map-frame {
    max-width: 650px;
    margin: 0 auto;
    background: var(--pastel-pink); 
    padding: 12px; 
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(78, 52, 46, 0.1);
    border: 2px dashed var(--dark-pink); 
    transition: transform 0.4s ease;
}

.map-frame:hover {
    transform: scale(1.02); 
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid var(--white); 
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.direction-wrapper {
    margin-top: 25px;
}

.btn-direction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--chocolate);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 8px 15px rgba(78, 52, 46, 0.15);
    transition: all 0.3s ease;
}

.btn-direction:hover {
    background-color: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 143, 177, 0.25);
}

/* Footer & Floating Button */
footer { background-color: var(--chocolate); color: var(--cream); text-align: center; padding: 30px 20px 60px 20px; font-size: 0.9rem; }
footer h2 { color: var(--white); margin-bottom: 5px; font-size: 1.5rem; }

.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
}

/* ====================================================
   🚀 MASTER MOBILE RESPONSIVENESS (सारा मोबाइल कोड यहाँ है)
   ==================================================== */
@media (max-width: 768px) {
    /* Header & Logo Fixes */
    a.logo-brand img {
        height: 85px !important;
        width: 85px !important;
        max-height: 85px !important;
        max-width: 85px !important;
    }
    .logo-text { font-size: 1.1rem; letter-spacing: 0px; }
    .nav-links { display: none; }
    .nav-btn { padding: 6px 12px; font-size: 0.8rem; }

    /* Hero Fixes */
    .hero-content h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }

    /* About Fixes */
    .about-container { flex-direction: column; text-align: center; }
    .about-text h2 { text-align: center; }

    /* Map Fixes */
    .map-frame { padding: 8px; border-radius: 15px; }
    .map-container iframe { height: 220px; }
    .btn-direction { width: 100%; font-size: 0.95rem; }
}

/* 🚀 FOOLPROOF LOGO ENLARGER (लोगो को सिकोड़ने से रोकेगा) */
.sticky-header img {
    height: 85px !important;
    width: 85px !important;
    min-height: 85px !important; /* यह लोगो को छोटा होने ही नहीं देगा */
    min-width: 85px !important;
    flex-shrink: 0 !important; /* 🚀 सबसे ज़रूरी: यह ब्राउज़र को लोगो दबाने से रोकेगा */
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .sticky-header img {
        height: 65px !important; /* मोबाइल के लिए काफी बड़ा और साफ़ साइज़ */
        width: 65px !important;
        min-height: 65px !important;
        min-width: 65px !important;
    }
    
    /* नाम को थोड़ा एडजस्ट किया ताकि लोगो के लिए जगह बने */
    .logo-text {
        font-size: 1rem !important; 
    }
                 }
