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

:root {
    --bg-primary: #fef9f3;
    --bg-secondary: #fff8f0;
    --text-primary: #4a3728;
    --accent-orange: #f7931e;
    --accent-yellow: #ffd54f;
    --accent-brown: #d4a574;
    --card-bg: #fef9f3;
}

body.dark-mode {
    --bg-primary: #1a1410;
    --bg-secondary: #2a1f1a;
    --text-primary: #f5e6d3;
    --accent-orange: #ff8c42;
    --accent-yellow: #ffb347;
    --accent-brown: #8b6f47;
    --card-bg: #2a1f1a;
}

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

.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.music-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(247, 147, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid var(--accent-brown);
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.volume-slider {
    width: 40px;
    height: 0;
    opacity: 0;
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
    writing-mode: vertical-lr;
    direction: rtl;
    background: rgba(247, 147, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    outline: none;
    border: 3px solid var(--accent-brown);
    cursor: pointer;
    order: -1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.music-control:hover .volume-slider {
    height: 120px;
    opacity: 1;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.music-toggle.playing {
    animation: musicPulse 1.5s ease-in-out infinite;
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--accent-orange);
    cursor: pointer;
    z-index: 1000;
    font-size: 1.5rem;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.music-control:hover ~ .scroll-to-top.show {
    bottom: 240px;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

@keyframes musicPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(247, 147, 30, 0.6);
    }
}

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

.navbar {
    background: rgba(254, 249, 243, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-brown);
    transition: background 0.3s;
}

body.dark-mode .navbar {
    background: rgba(26, 20, 16, 0.8);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

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

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

.nav-links a:hover {
    color: var(--accent-orange);
}

.theme-toggle {
    background: rgba(247, 147, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--accent-brown);
    border-radius: 50px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    margin-left: 20px;
    flex-shrink: 0;
}

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

.theme-toggle .moon {
    display: none;
}

body.dark-mode .theme-toggle .sun {
    display: none;
}

body.dark-mode .theme-toggle .moon {
    display: inline;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 5px;
    transition: 0.3s;
}

.hero {
    margin-top: 90px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    padding: 120px 20px;
    min-height: 600px;
    border-bottom: 5px solid var(--accent-brown);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}



.hero-content {
    color: white;
    max-width: 600px;
    animation: slideInLeft 1s ease-out;
}

.veg-badge {
    display: inline-block;
    background: rgba(40, 167, 69, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: pulse 2s ease-in-out infinite;
}

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

.veg-icon {
    font-size: 2.5rem;
    vertical-align: middle;
    margin-left: 10px;
}

.navbar .veg-badge {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #28a745;
    margin-left: auto;
    margin-right: 10px;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.cta-btn.primary {
    background: rgba(40, 167, 69, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    background: #218838;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-orange);
}

.cta-btn.instagram {
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.85) 0%, rgba(230, 104, 60, 0.85) 25%, rgba(220, 39, 67, 0.85) 50%, rgba(204, 35, 102, 0.85) 75%, rgba(188, 24, 136, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.mascot {
    animation: slideInRight 1s ease-out;
}

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

.mascot img {
    max-width: 400px;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

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

.about {
    padding: 40px 20px 30px;
    background: var(--bg-primary);
    position: relative;
}

.about h2, .menu h2, .gallery h2, .contact h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--accent-orange);
    position: relative;
    z-index: 1;
    font-weight: 700;
}



.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    font-size: 1.15rem;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-mascot img {
    max-width: 350px;
    animation: float 4s ease-in-out infinite;
}

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

.founders {
    margin-top: 0;
    text-align: center;
    position: relative;
}

.founders h2 {
    color: var(--accent-orange);
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.founder {
    background: rgba(254, 249, 243, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid var(--accent-brown);
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

body.dark-mode .founder {
    background: rgba(42, 31, 26, 0.7);
}

.founder:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.founder img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid var(--accent-orange);
    transition: transform 0.4s;
}

.founder:hover img {
    transform: scale(1.08) rotate(5deg);
}

.founder h3 {
    color: var(--accent-orange);
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.founder p {
    font-size: 1rem;
    line-height: 1.9;
    text-align: left;
}

.founders-story {
    background: rgba(255, 248, 240, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid var(--accent-brown);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

body.dark-mode .founders-story {
    background: rgba(42, 31, 26, 0.7);
}

.founders-story h3 {
    color: var(--accent-orange);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.founders-story p {
    font-size: 1.15rem;
    line-height: 1.9;
}

.why-name {
    margin-top: 40px;
    background: rgba(255, 248, 240, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--accent-brown);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

body.dark-mode .why-name {
    background: rgba(42, 31, 26, 0.7);
}

.why-name h3 {
    color: var(--accent-orange);
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.why-name p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.9;
}

.menu {
    padding: 40px 20px;
    background: var(--bg-secondary);
    position: relative;
}

.menu-pdf {
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-btn {
    display: inline-block;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent-brown);
    font-size: 1rem;
}

.view-menu-btn {
    background: rgba(40, 167, 69, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.view-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: rgba(33, 136, 56, 0.9);
}

.download-menu-btn {
    background: rgba(247, 147, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.download-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

.menu-item {
    background: rgba(254, 249, 243, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s;
    border: 3px solid var(--accent-brown);
}

body.dark-mode .menu-item {
    background: rgba(42, 31, 26, 0.7);
}

.menu-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.menu-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.menu-item-info {
    padding: 25px;
}

.menu-item h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.gallery {
    padding: 40px 20px;
    background: var(--bg-primary);
}

.reels-section {
    padding: 100px 20px;
    background: var(--bg-secondary);
}

.reels-inline {
    margin: 50px 0 40px;
}

.reels-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    margin-top: -20px;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reel-item {
    background: rgba(254, 249, 243, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--accent-brown);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s;
    cursor: pointer;
}

body.dark-mode .reel-item {
    background: rgba(42, 31, 26, 0.7);
}

.reel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.reel-item video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #000;
}

.stickers-section {
    padding: 40px 20px;
    background: var(--bg-secondary);
}

.stickers-header {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
    background: rgba(254, 249, 243, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--accent-brown);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

body.dark-mode .stickers-header {
    background: rgba(42, 31, 26, 0.7);
}

.stickers-mascot {
    max-width: 250px;
    animation: bounce 3s ease-in-out infinite;
}

.stickers-text h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-orange);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.stickers-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
}

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

.sticker-item {
    background: rgba(254, 249, 243, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    border: 3px solid var(--accent-brown);
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

body.dark-mode .sticker-item {
    background: rgba(42, 31, 26, 0.7);
}

.sticker-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.sticker-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.sticker-image-wrapper > img:first-child {
    width: 100%;
    max-width: 120px;
    transition: transform 0.3s;
}

.sticker-logo {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: auto;
    opacity: 0.9;
}

.sticker-item:hover .sticker-image-wrapper > img:first-child {
    transform: rotate(10deg) scale(1.1);
}

.sticker-download {
    display: inline-block;
    background: rgba(247, 147, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.sticker-download:hover {
    background: var(--accent-brown);
    transform: scale(1.05);
}

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

.gallery-item {
    background: rgba(254, 249, 243, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid var(--accent-brown);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

body.dark-mode .gallery-item {
    background: rgba(42, 31, 26, 0.7);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

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

.gallery-item-name {
    padding: 15px;
    text-align: center;
}

.gallery-item-name h3 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.contact {
    padding: 40px 20px;
    background: var(--bg-secondary);
    position: relative;
}

.founders-section {
    padding: 40px 20px;
    background: var(--bg-primary);
}

.franchise-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(255, 213, 79, 0.1) 100%);
    position: relative;
}

.franchise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(247, 147, 30, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.franchise-section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: var(--accent-orange);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 1px;
}

.franchise-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

body.dark-mode .franchise-content {
    background: rgba(42, 31, 26, 0.95);
}

.franchise-image {
    flex: 1;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(255, 213, 79, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.franchise-image img {
    width: 100%;
    height: auto;
    display: block;
}

.franchise-text {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.franchise-text h3 {
    color: var(--accent-orange);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: 1px;
}

.franchise-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 400;
}

.branches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.branch {
    background: rgba(254, 249, 243, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid var(--accent-brown);
    transition: all 0.4s;
}

body.dark-mode .branch {
    background: rgba(42, 31, 26, 0.7);
}

.branch:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.branch h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.branch p {
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.contact-phone {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.direction-btn {
    display: inline-block;
    background: rgba(247, 147, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent-brown);
    margin-top: 10px;
}

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

.contact-mascot {
    text-align: center;
}

.contact-mascot img {
    max-width: 350px;
    animation: float 4s ease-in-out infinite;
}

footer {
    background: var(--text-primary);
    color: var(--bg-primary);
    text-align: center;
    padding: 40px 20px;
    font-size: 1rem;
}

.social-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50px;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-links {
    margin-bottom: 20px;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 150px;
    height: 150px;
    border: 4px solid var(--bg-primary);
    border-radius: 15px;
    background: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.qr-code p {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 10px 15px;
    }

    .logo img {
        height: 45px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 20px 0;
        border-top: 2px solid var(--accent-brown);
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: block;
        margin-left: 10px;
    }

    .theme-toggle {
        padding: 6px 12px;
        font-size: 1rem;
        margin-left: 10px;
    }

    .navbar .veg-badge {
        display: none;
    }

    .music-control {
        bottom: 20px;
        right: 20px;
    }

    .music-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .volume-slider {
        width: 35px;
    }

    .music-control:hover .volume-slider {
        height: 100px;
    }

    .music-control:hover ~ .scroll-to-top.show {
        bottom: 200px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 80px;
        right: 20px;
    }

    .veg-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .hero {
        padding: 60px 15px;
        min-height: auto;
        margin-top: 70px;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
    }

    .about {
        padding: 30px 15px 20px;
    }

    .menu, .gallery, .contact, .stickers-section, .reels-section {
        padding: 30px 15px;
    }

    .reels-inline {
        margin: 30px 0 25px;
    }

    .about h2, .menu h2, .gallery h2, .contact h2 {
        margin-bottom: 30px;
    }

    .menu-pdf {
        margin-bottom: 30px;
    }

    .reels-subtitle {
        margin-bottom: 20px;
    }

    .stickers-header {
        margin-bottom: 30px;
        padding: 20px;
    }

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

    .founders-grid {
        gap: 20px;
        margin-bottom: 20px;
    }

    .why-name {
        margin-top: 30px;
        padding: 20px;
    }

    .reels-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reel-item video {
        height: 400px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-text {
        font-size: 1rem;
    }

    .mascot img, .about-mascot img, .contact-mascot img {
        max-width: 200px;
    }

    .stickers-header {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 25px;
    }

    .stickers-mascot {
        max-width: 150px;
    }

    .stickers-text h2 {
        font-size: 1.8rem;
    }

    .stickers-text p {
        font-size: 1rem;
    }

    .stickers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .sticker-item {
        padding: 12px;
    }

    .sticker-image-wrapper > img:first-child {
        max-width: 80px;
    }

    .sticker-logo {
        width: 20px;
        bottom: 3px;
        right: 3px;
    }

    .sticker-download {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .branches {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .branch {
        padding: 25px;
    }

    .branch h3 {
        font-size: 1.5rem;
    }

    .branch p {
        font-size: 0.95rem;
    }

    .menu-pdf {
        margin-bottom: 60px;
        flex-direction: column;
        align-items: center;
    }

    .menu-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 200px;
    }

    .menu-grid, .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-item img, .gallery-item img {
        height: 220px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder {
        padding: 25px;
    }

    .founder img {
        width: 160px;
        height: 160px;
    }

    .founder h3 {
        font-size: 1.6rem;
    }

    .founder p {
        font-size: 0.95rem;
    }

    .founders-story, .why-name {
        padding: 30px 25px;
    }

    .founders-story h3, .why-name h3 {
        font-size: 1.7rem;
    }

    .founders-story p, .why-name p {
        font-size: 1rem;
    }

    .franchise-section {
        padding: 40px 15px;
    }

    .franchise-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        flex-direction: column;
        gap: 10px;
    }

    .coming-soon-badge {
        font-size: 0.95rem;
        padding: 8px 20px;
    }

    .franchise-content {
        flex-direction: column;
    }

    .franchise-image {
        padding: 30px;
    }

    .franchise-text {
        padding: 30px;
    }

    .franchise-text h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .franchise-text p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about h2, .menu h2, .gallery h2, .contact h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .founders h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    footer {
        padding: 30px 15px;
        font-size: 0.9rem;
    }

    .social-icon {
        font-size: 1rem;
        padding: 10px 25px;
    }
}
