:root {
    --primary-color: #FF0000;
    --secondary-color: #000000;
    --background-color: #ffffff;
    --text-color: #333333;
    --sidebar-width: 280px;
    --logo-red: #FF0000;
    --logo-black: #000000;
    --container-padding: clamp(1rem, 5vw, 4rem);
    --section-spacing: clamp(2rem, 5vw, 4rem);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: var(--text-color);
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Improved responsive typography */
h1 {
    font-size: clamp(1.8rem, 5vw, 4rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1.4;
}

p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    line-height: 1.6;
}

.sidebar {
    width: min(280px, 90vw);
    height: 100vh;
    position: fixed;
    left: -290px;
    top: 0;
    background-color: #ffffff;
    padding: clamp(1rem, 3vw, 2rem);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    -webkit-overflow-scrolling: touch;
}

.sidebar.collapsed {
    transform: translateX(290px);
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #cc0000;
}

.logo-container {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.main-logo-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background-color: transparent;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    width: 100px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-symbol {
    position: relative;
    width: 80px;
    height: 50px;
    margin: 0 auto 15px;
    transform: scale(1.2);
}

.logo-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    left: -5px;
    top: 0;
    background: var(--logo-red);
    clip-path: path('M40,25 C40,15 35,5 20,5 C5,5 0,15 0,25 C0,35 5,45 20,45 C35,45 40,35 40,25 Z');
}

.logo-curve-right {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 25px;
    top: 0;
    background: var(--logo-black);
    clip-path: path('M0,25 C0,35 5,45 20,45 C35,45 40,35 40,25 C40,15 35,5 20,5 C5,5 0,15 0,25 Z');
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.text-cake {
    font-family: 'Playfair Display', serif;
    color: var(--logo-red);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    font-style: italic;
    margin-bottom: 5px;
}

.text-delight {
    font-family: 'Playfair Display', serif;
    color: var(--logo-black);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
}

/* Remove the hover animation since the original logo doesn't have it */
.vector-logo:hover .logo-curve,
.vector-logo:hover .logo-curve-right {
    transform: none;
    transition: none;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
}

.nav-menu ul li {
    margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    padding: clamp(0.5rem, 2vw, 1rem);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.nav-menu ul li a:hover {
    background-color: rgba(255, 0, 0, 0.1);
    transform: translateX(5px);
}

.contact-info {
    margin-top: auto;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}

.location-info {
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.location-info > p {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.address {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.address p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.address address {
    font-style: normal;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.branch-phone {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.branch-phone i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.branch-phone:hover {
    color: var(--primary-color);
}

.main-content {
    margin-left: 0;
    padding: clamp(1rem, 3vw, 2rem);
    width: 100%;
    transition: all 0.3s ease-in-out;
    padding-top: clamp(60px, 10vw, 100px);
    max-width: 100%;
    overflow-x: hidden;
}

.main-content.sidebar-collapsed {
    margin-left: 250px;
    width: calc(100% - 250px);
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--container-padding);
    margin-bottom: var(--section-spacing);
    position: relative;
    overflow: hidden;
    background: #ffffff;
    gap: clamp(1rem, 3vw, 2rem);
}

.hero-image {
    flex: 1;
    height: 100%;
    min-height: 400px;
    background: url('images1/hero-bg.png') center/contain no-repeat;
    max-width: 50%;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.hero-content {
    flex: 1;
    text-align: left;
    padding-left: clamp(1rem, 3vw, 4rem);
    max-width: 50%;
    background: #ffffff;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.hero p {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 400;
    color: var(--text-color);
    margin-top: 2rem;
    line-height: 1.5;
    font-style: italic;
}

.contact-section,
.location-section,
.menu-section,
.about-section {
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.contact-section h2,
.location-section h2,
.menu-section h2,
.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.menu-grid,
.contact-grid,
.location-grid,
.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(0.5rem, 2vw, 1rem);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.menu-item,
.contact-card,
.location-card,
.rating-card {
    padding: clamp(1rem, 3vw, 2rem);
    margin: clamp(0.5rem, 2vw, 1rem) 0;
    width: 100%;
    height: 100%;
}

.contact-card:hover,
.location-card:hover {
    transform: translateY(-5px);
}

.contact-card h3,
.location-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-card .branch-phone {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-card .branch-phone i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.contact-card .branch-phone:hover {
    color: var(--primary-color);
}

.location-card address {
    font-style: normal;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 0.95rem;
}

.about-section {
    background-color: var(--background-color);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.about-text p:last-child {
    margin-bottom: 0;
}

/* Decorative Elements */
.about-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.about-section::after {
    content: '🍰';
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    opacity: 0.2;
}

.section-divider {
    position: relative;
    height: 40px;
    margin: clamp(1rem, 3vw, 2rem) 0;
    overflow: hidden;
}

.section-divider::before {
    content: '• ❤ • 🍰 • ❤ • 🎂 • ❤ • 🧁 • ❤ •';
    position: absolute;
    width: 100%;
    text-align: center;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
}

.menu-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(-45deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 50%;
}

.location-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 50%;
}

/* Update existing sections to support decorative elements */
.about-section,
.contact-card,
.location-card {
    position: relative;
    overflow: hidden;
}

/* Add section dividers to HTML structure */
.main-content section:not(:last-child)::after {
    content: '';
    display: block;
    height: 40px;
    margin: 2rem 0;
    background-image: repeating-linear-gradient(45deg, 
        transparent, 
        transparent 10px, 
        rgba(255, 0, 0, 0.05) 10px, 
        rgba(255, 0, 0, 0.05) 20px
    );
}

/* Enhanced card hover effects */
.contact-card:hover,
.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.1);
}

/* Add decorative corners to sections */
.menu-section,
.contact-section,
.location-section {
    position: relative;
}

.menu-section::before,
.contact-section::before,
.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--primary-color);
    border-left: 3px solid var(--primary-color);
    opacity: 0.3;
}

.menu-section::after,
.contact-section::after,
.location-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
        height: 70vh;
        min-height: 400px;
        margin-bottom: 2rem;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        display: block;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
    }

    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .main-content.sidebar-collapsed {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
        min-height: 90vh;
        gap: 1.5rem;
    }

    .hero-image {
        height: 60vh;
        min-height: 350px;
        margin-bottom: 1.5rem;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        display: block;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-logo-container {
        top: 10px;
        right: 10px;
    }

    .main-logo {
        width: 80px;
    }

    .sidebar-toggle {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
    }

    .menu-section {
        padding: 3rem 1rem;
    }
    
    .menu-section h2 {
        font-size: 2rem;
        gap: 0.3rem;
    }
    
    .menu-section h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 0.5rem;
        gap: 1rem;
    }

    .hero-image {
        height: 50vh;
        min-height: 300px;
        margin-bottom: 1rem;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        display: block;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

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

    .main-logo {
        width: 60px;
    }

    .section-divider {
        margin: clamp(0.5rem, 2vw, 1rem) 0;
    }

    .menu-section h2 {
        font-size: 1.8rem;
        gap: 0.2rem;
    }
    
    .menu-section h2::after {
        width: 60px;
    }
}

.sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    border: none;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sidebar-toggle i {
    font-size: 24px;
    color: #333;
}

.sidebar-toggle:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

/* Ratings Section Styles */
.ratings-section {
    padding: 4rem 2rem;
    margin: 2rem 0;
    background-color: var(--background-color);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ratings-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.rating-card {
    position: relative;
    padding-bottom: 3.5rem !important;
}

.city-dropdown {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    max-width: 120px;
    z-index: 1001;
}

.dropdown-btn {
    width: 100%;
    padding: 0.35rem;
    background: #e23744;
    border: none;
    border-radius: 3px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    min-height: 30px;
}

/* Style Swiggy button differently */
.rating-card:last-child .dropdown-btn {
    background: #fc8019;
}

.rating-card:last-child .dropdown-btn:hover {
    background: #e67215;
}

.dropdown-btn:hover {
    background: #cf2938;
}

.dropdown-content {
    display: none;
    width: 100%;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    overflow: visible;
    border: 1px solid #e0e0e0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-content.show {
    display: block;
    pointer-events: auto;
    opacity: 1;
}

/* Remove ALL hover states */
.city-dropdown:hover .dropdown-content,
.dropdown-content:hover,
.dropdown-btn:hover + .dropdown-content {
    display: none;
    pointer-events: none;
    opacity: 0;
}

.dropdown-content.show {
    display: block !important;
    pointer-events: auto !important;
    opacity: 1 !important;
}

.dropdown-content a {
    display: block;
    padding: 0.35rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff;
    font-size: 0.75rem;
    position: relative;
    z-index: 1002;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* Style Swiggy dropdown links differently */
.rating-card:last-child .dropdown-content a:hover {
    background: #fff8f2;
    color: #fc8019;
}

.dropdown-content a:hover {
    background: #fff8f8;
    color: #e23744;
}

/* Responsive adjustments for dropdown */
@media (max-width: 768px) {
    .city-dropdown {
        bottom: 0.8rem;
        width: 40%;
        max-width: 100px;
    }

    .dropdown-btn {
        padding: 0.3rem;
        font-size: 0.7rem;
        min-height: 26px;
    }

    .dropdown-content a {
        padding: 0.3rem;
        font-size: 0.7rem;
    }
}

.platform {
    margin-bottom: 1.5rem;
}

.platform i {
    font-size: 2.5rem;
    color: #4285F4;
    margin-bottom: 1rem;
}

.platform-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.platform h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stars {
    margin: 1.5rem 0;
}

.stars i {
    color: #FFD700;
    font-size: 1.8rem;
    margin: 0 0.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stars i.far {
    color: #E0E0E0;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .ratings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stars i {
        font-size: 1.5rem;
    }

    .rating-score {
        font-size: 2rem;
    }
}

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

.menu-subsection:last-child {
    margin-bottom: 0;
}

.menu-subsection h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    display: block;
    width: 100%;
}

.menu-subsection h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cake-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.cake-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .cake-image {
    transform: scale(1.05);
}

.cake-name {
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .menu-subsection h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .menu-section {
        padding: 3rem 1rem;
    }
    
    .menu-section h2 {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cake-name {
        font-size: 1.1rem;
        padding: 0.8rem;
    }

    .menu-subsection h3 {
        font-size: 1.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-subsection h3 {
        font-size: 1.6rem;
    }
    
    .cake-name {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

.pure-veg-mark {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #4CAF50;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pure-veg-mark i {
    font-size: 1.2rem;
    color: #4CAF50;
}

.pure-veg-mark span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .pure-veg-mark {
        font-size: 0.8rem;
        padding: 8px;
    }
    
    .pure-veg-mark i {
        font-size: 1rem;
    }
}

/* Media Queries */
/* Small devices (phones) */
@media screen and (max-width: 480px) {
    .hero {
        padding: 1rem;
        min-height: 60vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .menu-section,
    .about-section,
    .contact-section,
    .location-section,
    .ratings-section {
        padding: 2rem 1rem;
    }

    .menu-item {
        margin: 0.5rem 0;
    }

    .cake-name {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .sidebar-toggle {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
    }

    .main-logo-container {
        top: 10px;
        right: 10px;
    }

    .main-logo {
        width: 60px;
    }
}

/* Medium devices (tablets) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: 2rem;
        min-height: 70vh;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-logo {
        width: 80px;
    }
}

/* Large devices (laptops/desktops) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-content.sidebar-collapsed {
        margin-left: min(280px, 25vw);
        width: calc(100% - min(280px, 25vw));
    }
}

/* Extra large devices */
@media screen and (min-width: 1025px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-content.sidebar-collapsed {
        margin-left: 280px;
        width: calc(100% - 280px);
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .menu-item:hover,
    .contact-card:hover,
    .location-card:hover,
    .rating-card:hover {
        transform: none;
    }

    .dropdown-content {
        -webkit-overflow-scrolling: touch;
    }
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Flexible spacing */
.section-divider {
    margin: clamp(1rem, 3vw, 2rem) 0;
}

/* Ensure buttons are touch-friendly */
button,
.nav-menu ul li a,
.dropdown-btn,
.google-btn,
.instagram-btn {
    min-height: 44px;
    min-width: 44px;
    padding: clamp(0.5rem, 2vw, 1rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Improve text readability on smaller screens */
@media screen and (max-width: 768px) {
    .about-text p {
        text-align: left;
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        line-height: 1.6;
    }

    .location-card address,
    .contact-card .branch-phone {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }
}

/* Ensure proper spacing in navigation */
.nav-menu ul li {
    margin: clamp(0.5rem, 2vw, 1rem) 0;
}

/* Maintain readability of section headings */
.section-divider::before {
    font-size: clamp(0.8rem, 2vw, 1.2rem);
}

/* Ensure proper spacing for cards */
.menu-item,
.contact-card,
.location-card,
.rating-card {
    padding: clamp(1rem, 3vw, 2rem);
    margin: clamp(0.5rem, 2vw, 1rem) 0;
}

/* Zomato Card Dropdown Styles */
.zomato-card {
    position: relative;
    padding-bottom: 3.5rem !important;
}

.city-dropdown {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    max-width: 120px;
    z-index: 1001;
}

.dropdown-btn {
    width: 100%;
    padding: 0.35rem;
    background: #e23744;
    border: none;
    border-radius: 3px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    min-height: 30px;
}

.dropdown-btn:hover {
    background: #cf2938;
}

.dropdown-content {
    display: none;
    width: 100%;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    overflow: visible;
    border: 1px solid #e0e0e0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-content.show {
    display: block;
    pointer-events: auto;
    opacity: 1;
}

/* Remove ALL hover states */
.city-dropdown:hover .dropdown-content,
.dropdown-content:hover,
.dropdown-btn:hover + .dropdown-content {
    display: none;
    pointer-events: none;
    opacity: 0;
}

.dropdown-content.show {
    display: block !important;
    pointer-events: auto !important;
    opacity: 1 !important;
}

.dropdown-content a {
    display: block;
    padding: 0.35rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff;
    font-size: 0.75rem;
    position: relative;
    z-index: 1002;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #fff8f8;
    color: #e23744;
}

/* Responsive adjustments for dropdown */
@media (max-width: 768px) {
    .city-dropdown {
        bottom: 0.8rem;
        width: 40%;
        max-width: 100px;
    }

    .dropdown-btn {
        padding: 0.3rem;
        font-size: 0.7rem;
        min-height: 26px;
    }

    .dropdown-content a {
        padding: 0.3rem;
        font-size: 0.7rem;
    }
}

.google-rating-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.google-rating-link:hover {
    transform: translateY(-5px);
}

.rating-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    padding-bottom: 3.5rem !important;
}

.google-btn {
    display: block;
    width: 100%;
    padding: 0.35rem;
    background: #4285F4;
    border: none;
    border-radius: 3px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    min-height: 30px;
}

.google-btn:hover {
    background: #3367D6;
}

@media (max-width: 768px) {
    .google-btn {
        padding: 0.3rem;
        font-size: 0.7rem;
        min-height: 26px;
    }
}

.instagram-section {
    padding: 4rem 2rem;
    margin: 2rem 0;
    background-color: var(--background-color);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.instagram-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.instagram-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.instagram-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.instagram-card .platform i {
    font-size: 3rem;
    color: #E4405F;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instagram-card .platform h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.instagram-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.2);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 3rem 1rem;
    }

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

    .instagram-card {
        padding: 1.5rem;
    }

    .instagram-card .platform i {
        font-size: 2.5rem;
    }

    .instagram-card .platform h3 {
        font-size: 1.3rem;
    }

    .instagram-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .sidebar,
    .sidebar-toggle,
    .main-logo-container {
        display: none;
    }

    .main-content {
        margin: 0;
        padding: 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-image {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-color: #000000;
        --background-color: #ffffff;
    }

    .hero h1,
    .hero p,
    .menu-item,
    .contact-card,
    .location-card,
    .rating-card {
        border: 1px solid #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.emoji-small {
    font-size: 0.6em;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .emoji-small {
        font-size: 0.6em;
    }
}

@media (max-width: 480px) {
    .emoji-small {
        font-size: 0.5em;
    }
} 