/* Brownico - Sizzling Brownie Specialists */
/* Authentic Theme Based on Brand Images */

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

:root {
    /* Brand Colors from Images */
    --brand-brown: #4A2C1D;
    --warm-chocolate: #6B4E3D;
    --golden-orange: #D4763A;
    --sizzle-orange: #E8944A;
    --cream-white: #FAF7F1;
    --deep-chocolate: #2D1810;
    --vanilla-cream: #FFF8E7;
    --caramel-gold: #B8860B;
    
    /* Gradients */
    --brown-gradient: linear-gradient(135deg, var(--brand-brown), var(--warm-chocolate));
    --sizzle-gradient: linear-gradient(135deg, var(--golden-orange), var(--sizzle-orange));
    --warm-gradient: linear-gradient(135deg, var(--deep-chocolate), var(--brand-brown));
    
    /* Typography */
    --brand-font: 'Dancing Script', cursive;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--deep-chocolate);
    background: var(--vanilla-cream);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(74, 44, 29, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 20px rgba(74, 44, 29, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    color: var(--cream-white);
}

.logo-text {
    font-family: var(--brand-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.logo-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.logo-tagline .fa-heart {
    color: var(--golden-orange);
    animation: heartbeat 2s infinite;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--cream-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--golden-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sizzle-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--vanilla-cream) 0%, #F5E6D8 50%, var(--cream-white) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.brand-logo {
    margin-bottom: 2rem;
}

.brand-name {
    font-family: var(--brand-font);
    font-size: 4rem;
    color: var(--brand-brown);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(74, 44, 29, 0.1);
}

.brand-tagline {
    font-size: 1.2rem;
    color: var(--warm-chocolate);
    font-weight: 500;
}

.brand-tagline .fa-heart {
    color: var(--golden-orange);
    animation: heartbeat 2s infinite;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--deep-chocolate);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--warm-chocolate);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--warm-chocolate);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.price-highlight {
    background: var(--sizzle-gradient);
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(212, 118, 58, 0.3);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-right: 0.5rem;
}

.price-desc {
    color: white;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--brown-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(74, 44, 29, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 44, 29, 0.4);
}

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

.btn-secondary:hover {
    background: var(--brand-brown);
    color: white;
    transform: translateY(-3px);
}

.sizzle-btn {
    animation: sizzlePulse 3s infinite;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 118, 58, 0.2);
    animation: heroGlow 3s ease-in-out infinite alternate;
}

.hero-brownie-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.sizzle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Sizzling Brownies Section */
.sizzling-section {
    padding: 6rem 0;
    background: var(--vanilla-cream);
}

.brownies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brownie-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 118, 58, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brownie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.brownie-image {
    height: 220px;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brownie-card:hover .card-image {
    transform: scale(1.05);
}

.brownie-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.brownie-content h3 {
    margin: 0 0 10px 0;
    color: var(--brand-brown);
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
}

.brownie-content p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--golden-orange);
    margin: 10px 0;
}

.order-btn {
    background: var(--golden-orange);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-btn:hover {
    background: var(--brand-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 118, 58, 0.3);
}

.sizzling-indicator {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--golden-orange);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    animation: sizzlePulse 2s infinite;
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--brand-brown);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.featured {
    border: 2px solid var(--golden-orange);
}

/* Steam Animation */
.steam {
    position: absolute;
    width: 4px;
    height: 30px;
    background: rgba(255,255,255,0.6);
    border-radius: 50px;
    animation: steamRise 2s infinite;
}

.steam-1 {
    top: -40px;
    left: 80px;
    animation-delay: 0s;
}

.steam-2 {
    top: -35px;
    left: 120px;
    animation-delay: 0.5s;
}

.steam-3 {
    top: -45px;
    left: 160px;
    animation-delay: 1s;
}

.sizzle-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--golden-orange);
    border-radius: 50%;
    animation: sizzleParticle 1.5s infinite;
}

.particle:nth-child(1) {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 80px;
    right: 70px;
    animation-delay: 0.3s;
}

.particle:nth-child(3) {
    bottom: 60px;
    left: 90px;
    animation-delay: 0.6s;
}

.particle:nth-child(4) {
    bottom: 40px;
    right: 50px;
    animation-delay: 0.9s;
}

/* Floating Desserts */
.floating-desserts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-dessert {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatDessert 8s infinite;
}

.float-dessert:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-dessert:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-dessert:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.float-dessert:nth-child(4) {
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--brand-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--warm-chocolate);
    font-weight: 500;
}

/* Sizzling Brownie Section */
.sizzling-section {
    padding: 6rem 0;
    background: var(--cream-white);
}

.brownies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brownie-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(74, 44, 29, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.brownie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(74, 44, 29, 0.2);
}

.brownie-card.featured {
    border: 3px solid var(--golden-orange);
}

.brownie-image {
    height: 200px;
    background: var(--brown-gradient);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brownie-image::before {
    content: '🍫';
    font-size: 4rem;
}

.brownie-image.premium::before {
    content: '🍫🍨';
}

.sizzling-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--golden-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    animation: sizzleGlow 2s infinite;
}

.premium-badge, .new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.premium-badge {
    background: var(--caramel-gold);
}

.new-badge {
    background: var(--golden-orange);
    animation: newBadgePulse 2s infinite;
}

.brownie-content {
    padding: 2rem;
}

.brownie-content h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--brand-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.brownie-content p {
    color: var(--warm-chocolate);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--golden-orange);
    margin-bottom: 1.5rem;
}

.order-btn {
    background: var(--sizzle-gradient);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 118, 58, 0.3);
}

/* Experience Section */
.experience {
    padding: 6rem 0;
    background: var(--vanilla-cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 44, 29, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--sizzle-gradient);
    border-radius: 2px;
}

.experience-icon {
    font-size: 3rem;
    color: var(--golden-orange);
    margin-bottom: 1.5rem;
}

.experience-card h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--brand-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.experience-card p {
    color: var(--warm-chocolate);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--cream-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--brand-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: var(--warm-chocolate);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.specialty-info {
    background: var(--vanilla-cream);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--golden-orange);
    margin-top: 2rem;
}

.specialty-info h4 {
    color: var(--brand-brown);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specialty-info ul {
    list-style: none;
}

.specialty-info li {
    color: var(--warm-chocolate);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.journey-timeline {
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--sizzle-gradient);
}

.journey-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.journey-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--brown-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(74, 44, 29, 0.3);
}

.journey-item h4 {
    color: var(--brand-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.journey-item p {
    color: var(--warm-chocolate);
}

/* Location Section */
.location {
    padding: 6rem 0;
    background: var(--vanilla-cream);
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card-main {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(74, 44, 29, 0.1);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-icon-main {
    width: 60px;
    height: 60px;
    background: var(--golden-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.location-info h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--brand-brown);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-address {
    color: var(--warm-chocolate);
    font-size: 1.1rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--vanilla-cream);
    border-radius: 10px;
}

.feature i {
    color: var(--golden-orange);
    font-size: 1.2rem;
}

.location-timing {
    background: var(--cream-white);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--golden-orange);
}

.location-timing h4 {
    color: var(--brand-brown);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timing-note {
    color: var(--warm-chocolate);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Location Journey */
.location-journey h4 {
    font-family: var(--heading-font);
    color: var(--brand-brown);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.journey-steps {
    space-y: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.step-icon.past {
    background: var(--warm-chocolate);
}

.step-icon.current {
    background: var(--golden-orange);
    animation: currentPulse 2s infinite;
}

.step-icon.future {
    background: var(--brand-brown);
    opacity: 0.6;
}

.step-content h5 {
    color: var(--brand-brown);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.step-content p {
    color: var(--warm-chocolate);
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--cream-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(74, 44, 29, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--golden-orange);
    font-family: var(--heading-font);
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--caramel-gold);
    margin-right: 0.3rem;
}

.review-card p {
    color: var(--warm-chocolate);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.reviewer strong {
    color: var(--brand-brown);
    font-weight: 600;
}

.reviewer span {
    color: var(--warm-chocolate);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--warm-gradient);
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 0.3rem;
}

.contact-item small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact Visual */
.contact-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
}

.stall-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.stall-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.instagram-link {
    color: var(--golden-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid var(--golden-orange);
    border-radius: 25px;
    margin-top: 8px;
}

.instagram-link:hover {
    background: var(--golden-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 118, 58, 0.3);
    text-decoration: none;
}

.instagram-handle {
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--deep-chocolate);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand-name {
    font-family: var(--brand-font);
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--golden-orange);
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-tagline .fa-heart {
    color: var(--golden-orange);
}

.footer-location {
    color: var(--golden-orange);
    margin-top: 1rem;
}

.footer-menu h4 {
    color: var(--golden-orange);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-social h4 {
    color: var(--golden-orange);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.social-link:hover {
    color: var(--golden-orange);
}

.social-link i {
    font-size: 1.5rem;
}

.footer-hours {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--golden-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    color: var(--cream-white);
}

/* Order Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 44, 29, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 60px rgba(74, 44, 29, 0.3);
    animation: modalSlide 0.3s ease-out;
}

.modal-header {
    background: var(--brown-gradient);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 1.5rem;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.order-info {
    background: var(--vanilla-cream);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 5px solid var(--golden-orange);
}

.order-info h4 {
    color: var(--brand-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-footer {
    text-align: center;
    color: var(--warm-chocolate);
    font-style: italic;
}

/* Animations */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes sizzlePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(74, 44, 29, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(212, 118, 58, 0.4);
    }
}

@keyframes plateFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes heroGlow {
    from {
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(212, 118, 58, 0.2);
    }
    to {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(212, 118, 58, 0.4);
    }
}

@keyframes brownieglow {
    0%, 100% { box-shadow: inset 0 -10px 20px rgba(0,0,0,0.3); }
    50% { box-shadow: inset 0 -10px 20px rgba(0,0,0,0.3), 0 0 20px rgba(212, 118, 58, 0.3); }
}

@keyframes icecreamMelt {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95) translateY(2px); }
}

@keyframes sauceFlow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes steamRise {
    0% { 
        opacity: 0.8;
        transform: translateY(0px) scale(1);
    }
    100% { 
        opacity: 0;
        transform: translateY(-30px) scale(0.5);
    }
}

@keyframes sizzleParticle {
    0% { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% { 
        opacity: 0;
        transform: scale(0) translateY(-20px);
    }
}

@keyframes floatDessert {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) translateX(0px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-20px) translateX(-10px) rotate(270deg);
        opacity: 0.5;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sizzleGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(212, 118, 58, 0.5);
    }
    50% { 
        box-shadow: 0 0 20px rgba(212, 118, 58, 0.8);
    }
}

@keyframes newBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes currentPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 rgba(212, 118, 58, 0);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(212, 118, 58, 0.3);
    }
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--cream-white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--brand-brown);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-container {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .brand-name {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .brand-name {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .brownie-card {
        margin: 0 1rem;
    }
    
    .hero-image-container {
        width: 250px;
        height: 250px;
    }
    
    .contact-image-container {
        height: 250px;
    }
    
    .price {
        font-size: 1.5rem;
    }
}