/* ====================================
   CSS Variables & Reset
==================================== */
:root {
    /* Color Palette - Warm & Luxurious */
    --cream: #FAF7F2;
    --cream-dark: #F5EEE5;
    --gold: #C6A15B;
    --gold-light: #E5D5B3;
    --gold-dark: #A88644;
    --chocolate: #5C4033;
    --chocolate-light: #7A5A4A;
    --pink-pastel: #F9E1E0;
    --burgundy: #800020;
    --burgundy-light: #A23B4A;
    --white: #FFFFFF;
    --black: #2C2C2C;
    --gray-light: #F8F8F8;
    --gray: #E0E0E0;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 8px 24px rgba(198, 161, 91, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ====================================
   Typography
==================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--chocolate);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--chocolate-light);
    max-width: 600px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--burgundy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====================================
   Preloader - Gulab Jamun Animation
==================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2C1810 0%, #4A2C1A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--gold-light);
}

.jamun-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.jamun {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #8B4513, #5C2E0E);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.jamun::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 20%;
    height: 20%;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.jamun-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatJamun 2s ease-in-out infinite;
}

.jamun-2 {
    top: 20%;
    left: 30%;
    width: 40px;
    height: 40px;
    animation: floatJamun 2.2s ease-in-out infinite 0.2s;
}

.jamun-3 {
    bottom: 20%;
    right: 30%;
    width: 45px;
    height: 45px;
    animation: floatJamun 2.4s ease-in-out infinite 0.4s;
}

.syrup-drop {
    position: absolute;
    bottom: 40%;
    left: 50%;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #E6B422, #C69C1A);
    transform: translateX(-50%);
    animation: syrupDrop 2s ease-in-out infinite;
}

@keyframes floatJamun {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-15px) translateX(-50%); }
}

@keyframes syrupDrop {
    0% { height: 0; opacity: 0; }
    20% { height: 40px; opacity: 1; }
    80% { height: 40px; opacity: 1; }
    100% { height: 60px; opacity: 0; }
}

.loading-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 2px;
}

.loading-percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

/* ====================================
   Header & Navigation
==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 50px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--chocolate);
}

.logo-sweets {
    color: var(--gold);
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--chocolate);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.bar {
    width: 100%;
    height: 3px;
    background: var(--chocolate);
    transition: var(--transition);
}

/* ====================================
   Hero Section - Redesigned
==================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: var(--spacing-xl) 0;
}

.hero-sweet-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-sweet-decoration span {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    animation: floatDecoration 15s ease-in-out infinite;
}

.sweet-1 { top: 10%; left: 5%; transform: rotate(-15deg); animation-delay: 0s; }
.sweet-2 { bottom: 15%; right: 5%; transform: rotate(10deg); animation-delay: 2s; }
.sweet-3 { top: 20%; right: 10%; transform: rotate(25deg); animation-delay: 1s; }

@keyframes floatDecoration {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    75% { transform: translateY(20px) rotate(-5deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(198, 161, 91, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gold-dark);
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--gold-dark);
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(198, 161, 91, 0.2);
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--chocolate-light);
    margin-bottom: var(--spacing-md);
    max-width: 450px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(198, 161, 91, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--chocolate);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(198, 161, 91, 0.1);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--chocolate);
    border: 2px solid var(--chocolate-light);
    padding: 0.875rem 2rem;
}

.btn-secondary:hover {
    background: var(--chocolate);
    color: var(--white);
    border-color: var(--chocolate);
}

.hero-visual-wrapper {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.image-card {
    position: absolute;
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.image-card:hover {
    transform: scale(1.02) translateY(-5px);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--chocolate);
}

.card-1 {
    top: 20%;
    left: 0;
    z-index: 3;
    width: 320px;
    transform: rotate(-5deg);
}

.card-2 {
    top: 40%;
    right: 0;
    z-index: 2;
    width: 280px;
    transform: rotate(8deg);
}

.card-3 {
    bottom: 10%;
    left: 15%;
    z-index: 1;
    width: 260px;
    transform: rotate(-2deg);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(198, 161, 91, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--chocolate-light);
    font-size: 0.875rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ====================================
   Brand Story Section
==================================== */
.brand-story {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.story-content {
    padding-right: var(--spacing-lg);
}

.story-text {
    font-size: 1.1rem;
    color: var(--chocolate-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--chocolate-light);
    letter-spacing: 0.5px;
}

.story-visual {
    position: relative;
}

.story-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.grid-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.img-1 { grid-column: span 2; height: 300px; }
.img-2 { height: 200px; }
.img-3 { height: 200px; }

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.years {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.years-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ====================================
   Featured Sweets Section
==================================== */
.featured-sweets {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.center {
    text-align: center;
}

.sweets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.sweet-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.sweet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.sweet-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.sweet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.sweet-card:hover .sweet-image {
    transform: scale(1.1);
}

.sweet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.sweet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.sweet-card:hover .sweet-overlay {
    opacity: 1;
}

.quick-view {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: var(--chocolate);
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(20px);
}

.sweet-card:hover .quick-view {
    transform: translateY(0);
}

.quick-view:hover {
    background: var(--gold);
    color: var(--white);
}

.sweet-content {
    padding: 1.5rem;
}

.sweet-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--chocolate);
}

.sweet-desc {
    color: var(--chocolate-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sweet-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.sweet-category {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sweet-fresh {
    color: var(--chocolate-light);
    font-style: italic;
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ====================================
   Why Choose Us Section
==================================== */
.why-choose {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '✦';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 300px;
    color: var(--gold-light);
    opacity: 0.1;
    transform: rotate(15deg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--chocolate);
}

.feature-text {
    color: var(--chocolate-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ====================================
   Testimonials Section
==================================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-icon {
    font-size: 6rem;
    font-family: var(--font-serif);
    color: var(--gold-light);
    line-height: 0.8;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--chocolate);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.875rem;
    color: var(--gold);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ====================================
   Instagram Gallery Section
==================================== */
.instagram-gallery {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 161, 91, 0.3) 0%, rgba(128, 0, 32, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.insta-icon {
    font-size: 2rem;
    color: var(--white);
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .insta-icon {
    transform: scale(1);
}

/* ====================================
   Visit Us Section
==================================== */
.visit-us {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.contact-info {
    padding-right: var(--spacing-lg);
}

.info-list {
    margin: var(--spacing-md) 0;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--chocolate-light);
    line-height: 1.6;
}

.info-content a {
    color: var(--chocolate-light);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--chocolate);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* ====================================
   Footer
==================================== */
.footer {
    background: var(--chocolate);
    color: var(--cream);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(250, 247, 242, 0.7);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(250, 247, 242, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    color: rgba(250, 247, 242, 0.7);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.hours-list span {
    color: var(--white);
    font-weight: 500;
}

.footer-address p {
    color: rgba(250, 247, 242, 0.7);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-phone a,
.footer-email a {
    color: rgba(250, 247, 242, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-phone a:hover,
.footer-email a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: rgba(250, 247, 242, 0.5);
    font-size: 0.875rem;
}

/* ====================================
   Modal Styles
==================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--white);
}

.modal-body {
    padding: 2rem;
}

/* ====================================
   Animation Classes
==================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    transition-delay: 0.2s;
}

.reveal.delay-2 {
    transition-delay: 0.4s;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-slide-up.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ====================================
   Responsive Design
==================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .image-card {
        width: 240px;
    }
    
    .card-1 { width: 280px; }
    .card-2 { width: 240px; }
    .card-3 { width: 220px; }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-image-stack {
        height: 500px;
    }
    
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .story-content {
        padding-right: 0;
        text-align: center;
    }
    
    .story-stats {
        justify-content: center;
    }
    
    .experience-badge {
        bottom: 0;
        right: 0;
    }
    
    .features-grid,
    .sweets-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-image-stack {
        height: 400px;
    }
    
    .image-card {
        width: 200px;
    }
    
    .card-1 { width: 240px; }
    .card-2 { width: 200px; }
    .card-3 { width: 180px; }
    
    .features-grid,
    .sweets-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }
    
    .years {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-image-stack {
        height: 350px;
    }
    
    .image-card {
        width: 160px;
    }
    
    .card-1 { width: 200px; }
    .card-2 { width: 160px; }
    .card-3 { width: 140px; }
    
    .story-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}