:root {
    --primary-white: #ffffff;
    --primary-purple: #8E4585; /* Plum */
    --light-purple: #A9C2F0; /* Light Blueberry Blue */
    --dark-text: #2d3436;
    --light-text: #636e72;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(142, 69, 133, 0.1);
    --plum-glow: 0 0 40px rgba(142, 69, 133, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-white);
    color: var(--dark-text);
    overflow-x: hidden;
}

/* No vertical background lines */

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* Typography */
h1, h2, h3 {
    color: var(--dark-text);
    font-weight: 600;
}

p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-purple); /* Plum background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.loader-text {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    letter-spacing: 8px;
    color: var(--primary-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
}

.loader-text span {
    display: inline-block;
    opacity: 0; /* Will be animated */
}

.loader-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: 2px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    margin-left: 15px;
    padding: 10px 25px;
    border-radius: 30px;
    background: var(--primary-purple);
    border: 1px solid var(--primary-purple);
    font-weight: 500;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 5px 15px rgba(142, 69, 133, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-purple);
    background: none;
    border: none;
    transition: transform 0.3s;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Mobile Menu Styles */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 0 5%;
    position: relative;
    overflow: hidden;
    background: var(--primary-white);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    gap: 80px;
    z-index: 10;
    flex-direction: row-reverse;
}

.hero-content {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-text-wrapper {
    position: relative;
    z-index: 10;
    max-width: 550px;
}

.hero-image-bg {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    background: transparent;
    transform: translateY(-40px);
}

.hero-image {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 30px 60px rgba(142, 69, 133, 0.25), 0 0 80px rgba(142, 69, 133, 0.15);
    filter: drop-shadow(0 15px 35px rgba(142, 69, 133, 0.2));
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--dark-text);
    font-weight: 700;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title br + br ~ * {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 45px;
    opacity: 0;
    transform: translateY(30px);
    color: var(--primary-white);
    max-width: 500px;
    font-weight: 400;
    line-height: 1.8;
}

/* Floating VEG Badge */
.veg-badge {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d9c6b, #1e8449);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 950;
    box-shadow: 0 8px 25px rgba(45, 156, 107, 0.4);
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    line-height: 1.2;
}

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

/* Header Tagline */
.header-tagline {
    position: fixed;
    top: 75px;
    left: 5%;
    font-size: 0.95rem;
    color: var(--primary-purple);
    font-weight: 500;
    letter-spacing: 0.5px;
    font-style: italic;
    z-index: 940;
    text-shadow: 0 0 10px rgba(142, 69, 133, 0.6), 0 0 20px rgba(142, 69, 133, 0.4);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(142, 69, 133, 0.6), 0 0 20px rgba(142, 69, 133, 0.4);
    }
    50% { 
        text-shadow: 0 0 15px rgba(142, 69, 133, 0.8), 0 0 30px rgba(142, 69, 133, 0.6);
    }
}

/* Marquee Section */
.marquee-section {
    position: relative;
    width: 100%;
    background: rgba(142, 69, 133, 0.08);
    color: var(--primary-purple);
    padding: 15px 0;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    border-top: 1px solid rgba(142, 69, 133, 0.2);
    border-bottom: 1px solid rgba(142, 69, 133, 0.2);
    z-index: 10;
    letter-spacing: 0.5px;
    margin-top: 80px;
}

.marquee-section::-webkit-scrollbar {
    display: none;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary-purple), #a855a8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 15px 35px rgba(142, 69, 133, 0.35), 0 0 1px rgba(142, 69, 133, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    cursor: pointer;
    position: relative;
    z-index: 15;
}

.explore-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(142, 69, 133, 0.45), 0 0 20px rgba(142, 69, 133, 0.3);
    background: linear-gradient(135deg, #a855a8, #c085c0);
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(108, 92, 231, 0.4);
}

/* Wavy Divider */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 200px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--primary-purple);
}

/* Sections Common */
section {
    position: relative;
    z-index: 10;
    padding: 60px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    /* Removes the oval issue and perfectly masks the bowl */
}

/* Menu Section */
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    padding: 0 4px;
}

.category-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background: #f5f6fa;
    color: var(--dark-text);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.category-btn.active, .category-btn:hover {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.menu-card {
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 0 15px rgba(142, 69, 133, 0.4);
    border-radius: 20px;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--plum-glow);
}

.card-tag {
    position: relative;
    width: 100%;
    background: rgba(142, 69, 133, 0.15);
    color: var(--primary-purple);
    padding: 8px 0;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(142, 69, 133, 0.3);
    backdrop-filter: blur(8px);
    z-index: 5;
    text-align: center;
    margin-bottom: 15px;
}

.card-img-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.card-img-wrapper img,
.img-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(142, 69, 133, 0.15);
    transition: transform 10s linear;
}

.img-placeholder {
    background: linear-gradient(135deg, rgba(142,69,133,0.08), rgba(142,69,133,0.18));
    border: 2px dashed rgba(142, 69, 133, 0.3);
}

.menu-card:hover .card-img-wrapper img {
    transform: rotate(30deg);
}

.kcal-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-purple);
    background: rgba(142, 69, 133, 0.1);
    border: 1px solid rgba(142, 69, 133, 0.25);
    border-radius: 20px;
    padding: 2px 10px;
    vertical-align: middle;
    margin-left: 6px;
}

.menu-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary-purple);
}

.card-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.action-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: var(--primary-purple);
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 500;
}

.action-btn:hover {
    background: #a855a8;
    color: white;
    box-shadow: 0 5px 15px rgba(142, 69, 133, 0.4);
}

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

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    padding: 40px;
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 400px;
    transform: scale(0.8);
    transition: transform 0.3s;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
}

.price-display {
    font-size: 2rem;
    color: var(--primary-purple);
    font-weight: 700;
    margin-top: 10px;
}

.ingredients-display {
    font-size: 1rem;
    margin-top: 15px;
    line-height: 1.8;
    text-align: left;
}

.ing-label {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-ingredients-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
}

/* Benefits Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px; 
    height: 0%; /* Animated via GSAP */
    background: linear-gradient(180deg, var(--primary-purple), var(--light-purple));
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    text-align: center;
    width: 300px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-white);
    border: 4px solid var(--primary-purple);
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.4);
}

.timeline-content {
    padding: 20px;
}

.timeline-content.glass {
    background: rgba(142, 69, 133, 0.95);
    border: none;
    box-shadow: 0 10px 30px rgba(142, 69, 133, 0.4);
    backdrop-filter: blur(20px);
}

.timeline-content h3, .timeline-content p {
    color: var(--primary-white);
}

.timeline-content i {
    font-size: 2rem;
    color: var(--primary-white);
    margin-bottom: 10px;
}

/* Gallery */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 0 15px rgba(142, 69, 133, 0.4);
    transition: box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(108, 92, 231, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-item:hover {
    box-shadow: var(--plum-glow);
}

.gallery-item:hover .overlay {
    background: rgba(142, 69, 133, 0.4);
    opacity: 1;
}

/* Contact */
.contact-container {
    display: flex;
    gap: 50px;
    background: #fdfbfd;
    padding: 60px;
    border-radius: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.contact-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(142, 69, 133, 0.2);
}

.contact-details p {
    font-size: 1rem;
    margin: 10px 0;
}

.contact-details a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(66, 133, 244, 0.4);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25D366;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 15px;
    background: rgba(255,255,255,0.8);
    outline: none;
    font-size: 1rem;
    color: var(--dark-text);
}

.form-input:focus {
    border-color: var(--primary-purple);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--light-purple);
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 10%;
    background: transparent;
}

.footer h2 {
    margin-bottom: 30px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
    margin-bottom: 40px;
    transition: transform 0.3s;
}

.instagram-btn:hover {
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.9rem;
}

/* Responsive Design */
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .veg-badge {
        top: 90px;
        right: 20px;
        width: 75px;
        height: 75px;
        font-size: 1.3rem;
    }
    
    .header-tagline {
        top: 70px;
        left: 3%;
        font-size: 0.9rem;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-image {
        width: 350px;
        height: 350px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-container {
        gap: 30px;
        padding: 40px;
    }
    
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        gap: 15px;
    }
}

/* Tablet Portrait (max 900px) */
@media (max-width: 900px) {
    .navbar {
        padding: 15px 3%;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        z-index: 999;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

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

    .nav-links a {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 80px 5% 30px 5%;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content {
        flex: 1;
        width: 100%;
    }
    
    .hero-text-wrapper {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-image-bg {
        flex: 1;
        width: 100%;
        transform: translateY(0);
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .about {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-image {
        width: 300px;
        height: 300px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .menu-card {
        padding: 15px;
    }

    .card-img-wrapper img,
    .img-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .contact-container {
        flex-direction: column;
        padding: 30px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .whatsapp-btn, .location-link {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .veg-badge {
        top: 80px;
        right: 10px;
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
    
    .header-tagline {
        top: 65px;
        left: 2%;
        font-size: 0.8rem;
    }
    
    .navbar {
        padding: 12px 3%;
    }
    
    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 40px 4%;
    }
    
    .hero {
        padding: 70px 4% 20px 4%;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .explore-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-image {
        width: 200px;
        height: 200px;
    }
    
    .menu-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .card-img-wrapper img,
    .img-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .menu-card h3 {
        font-size: 1rem;
    }
    
    .action-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .contact-container {
        padding: 20px;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-form h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
    }
    
    .footer {
        padding: 40px 5%;
    }
    
    .footer h2 {
        font-size: 1.5rem;
    }
    
    .instagram-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 12px;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .loader-logo {
        width: 150px;
        height: 150px;
    }
    
    .loader-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .navbar {
        padding: 10px 3%;
    }
    
    .logo {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .explore-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        padding: 15px;
    }
    
    .contact-info, .contact-form {
        padding: 0;
    }
    
    .contact-buttons {
        gap: 10px;
    }
    
    .whatsapp-btn, .location-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
        gap: 10px;
    }
}
