:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --nav-bg: #f8f9fa;
    --card-bg: #ffffff;
    --shadow: rgba(0,0,0,0.1);
    --accent: #ff6b6b;
    --secondary: #4ecdc4;
    --gradient: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    --border-radius: 12px;
}

[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --nav-bg: #2d2d2d;
    --card-bg: #333333;
    --shadow: rgba(255,255,255,0.1);
    --accent: #ff8a8a;
    --secondary: #6ee7dd;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: var(--nav-bg);
    padding: 1rem 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo h2 {
    color: var(--accent);
    font-size: 1.5rem;
}

.tagline {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-left: 0.5rem;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

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

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

.theme-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.theme-btn:hover {
    background: var(--shadow);
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: white;
    color: var(--accent);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Anju Section */
.about-reeta {
    padding: 4rem 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
    width: 280px;
    height: 280px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.multicolor-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: conic-gradient(
        from 0deg,
        #ff6b6b 0deg,
        #4ecdc4 72deg,
        #45b7d1 144deg,
        #96ceb4 216deg,
        #feca57 288deg,
        #ff6b6b 360deg
    );
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.about-text h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.9;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--card-bg);
    border-radius: 25px;
    box-shadow: 0 3px 10px var(--shadow);
    font-weight: 500;
    color: var(--text-color);
}

.highlight-icon {
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--bg-color);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.3rem 0;
    color: var(--text-color);
    opacity: 0.8;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: var(--nav-bg);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Order Info Section */
.order-info {
    padding: 4rem 0;
    background: var(--bg-color);
}

.order-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
}

.info-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card ul {
    list-style: none;
    text-align: left;
}

.info-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--shadow);
}

.info-card li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn.instagram {
    background: #E4405F;
    color: white;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

/* Menu Page Styles */
.menu-page {
    min-height: 100vh;
}

.menu-hero {
    background: var(--gradient);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.menu-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.menu-content {
    padding: 4rem 0;
}

.menu-categories {
    margin-bottom: 4rem;
}

.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
}

.menu-item h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.menu-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--shadow);
    transition: color 0.3s ease;
}

.menu-item li:last-child {
    border-bottom: none;
}

.menu-item li:hover {
    color: var(--accent);
}

.pastries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.pastry-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px var(--shadow);
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pastry-item:hover {
    transform: translateY(-3px);
    color: var(--accent);
}

.order-guidelines {
    background: var(--nav-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.order-guidelines h2 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 2rem;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guideline-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px var(--shadow);
}

.guideline-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.guideline-card ul {
    list-style: none;
}

.guideline-card li {
    padding: 0.5rem 0;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Floating Animations */
.floating-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.cake1 {
    top: 20%;
    left: 10%;
    animation: float1 8s infinite;
}

.star1 {
    top: 30%;
    right: 15%;
    animation: float2 6s infinite;
    font-size: 1.5rem;
}

.cupcake1 {
    top: 60%;
    left: 20%;
    animation: float3 7s infinite;
}

.star2 {
    top: 15%;
    left: 70%;
    animation: float4 5s infinite;
    font-size: 1.2rem;
}

.cookie1 {
    top: 70%;
    right: 25%;
    animation: float1 9s infinite;
}

.star3 {
    top: 80%;
    left: 60%;
    animation: float2 4s infinite;
    font-size: 1.8rem;
}

.pastry1 {
    top: 40%;
    right: 5%;
    animation: float3 6s infinite;
}

.sparkle1 {
    top: 50%;
    left: 5%;
    animation: float4 7s infinite;
    font-size: 1.3rem;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateX(0px) scale(1); }
    25% { transform: translateX(15px) scale(1.1); }
    50% { transform: translateX(-10px) scale(0.9); }
    75% { transform: translateX(8px) scale(1.05); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-15px) translateX(10px); }
    66% { transform: translateY(-5px) translateX(-8px); }
}

@keyframes float4 {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(0.8); }
    75% { transform: rotate(270deg) scale(1.1); }
}

/* Gallery Page Styles */
.gallery-page {
    min-height: 100vh;
}

.gallery-hero {
    background: var(--gradient);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.main-actions {
    padding: 3rem 0;
    background: var(--bg-color);
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.catalog-btn {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.btn-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.btn-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-showcase {
    padding: 4rem 0;
    background: var(--nav-bg);
}

.gallery-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.gallery-cta {
    padding: 4rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.gallery-cta h2 {
    margin-bottom: 1rem;
}

.gallery-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--nav-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--shadow);
}

.footer p {
    color: var(--text-color);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-grid,
    .gallery-grid,
    .info-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .pastries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .star1, .star2, .sparkle1 {
        font-size: 1rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .action-btn {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .image-frame {
        width: 220px;
        height: 220px;
    }
    
    .about-highlights {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services h2,
    .gallery h2,
    .order-info h2 {
        font-size: 2rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .floating-icon {
        font-size: 1.2rem;
    }
    
    .star1, .star2, .sparkle1 {
        font-size: 0.8rem;
    }
    
    .floating-animations {
        display: none;
    }
    
    .image-frame {
        width: 180px;
        height: 180px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-highlights {
        flex-direction: column;
        align-items: center;
    }
}
