/* Global Styles */
:root {
    --color-black: #000000;
    --color-dark-gray: #1A1A1A;
    --color-white: #FFFFFF;
    --color-yellow: #FFD000;
    --font-poppins: 'Poppins', sans-serif;
    --font-bebas-neue: 'Bebas Neue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll due to animations */
}

a {
    color: var(--color-yellow);
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

h1, h2, h3 {
    font-family: var(--font-bebas-neue);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h1 {
    font-size: 4em;
    text-align: center;
}

h2 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
}

h3 {
    font-size: 1.8em;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

.primary-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    box-shadow: 0 0 15px var(--color-yellow);
}

.secondary-btn {
    background-color: transparent;
    color: var(--color-yellow);
    border: 2px solid var(--color-yellow);
    margin-left: 15px;
}

.secondary-btn:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
    box-shadow: 0 0 15px var(--color-yellow);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    border: 8px solid var(--color-dark-gray);
    border-top: 8px solid var(--color-yellow);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Progress Indicator */
.scroll-progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background-color: var(--color-yellow);
    z-index: 9998;
}

/* Floating WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

/* Sticky Order Button */
.sticky-order-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-order-button:hover {
    background-color: var(--color-white);
    box-shadow: 0 0 25px var(--color-yellow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 50px; /* Adjust as needed */
}

.navbar .nav-links {
    display: flex;
}

.navbar .nav-links li {
    margin-left: 40px;
}

.navbar .nav-links a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1em;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color-yellow);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.navbar .nav-links a:hover::after {
    width: 100%;
}

.navbar .nav-links a:hover {
    color: var(--color-yellow);
}

.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transform: scale(1.05); /* Subtle zoom effect */
    transition: transform 0.5s ease-out;
}

.hero-section.active .hero-image {
    transform: scale(1);
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 5em;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 208, 0, 0.5);
}

.hero-content h3 {
    font-family: var(--font-poppins);
    font-weight: 300;
    font-size: 1.8em;
    margin-bottom: 40px;
}

.cta-buttons {
    margin-top: 30px;
}

.floating-burger-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    width: 150px; /* Adjust size as needed */
    opacity: 0;
    animation: float 15s infinite ease-in-out;
}

.floating-card.card-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    width: 180px;
}

.floating-card.card-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
    width: 160px;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
}

/* About Section */
.about-section {
    background-color: var(--color-dark-gray);
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px); /* Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--color-yellow);
}

.stat-card h3 {
    font-size: 2.5em;
    color: var(--color-yellow);
    margin-bottom: 10px;
}

.stat-card p {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 1em;
    margin: 0;
    color: var(--color-white);
}

/* Menu Section */
.menu-section {
    background-color: var(--color-black);
}

.menu-categories {
    text-align: center;
    margin-bottom: 50px;
}

.category-btn {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
    background-color: var(--color-yellow);
    color: var(--color-black);
    box-shadow: 0 0 10px var(--color-yellow);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.menu-item {
    background-color: var(--color-dark-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding-bottom: 20px;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px var(--color-yellow);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item h3 {
    font-size: 1.5em;
    margin: 20px 20px 10px 20px;
    text-align: left;
}

.menu-item p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 20px 15px 20px;
    text-align: left;
}

.menu-item .price {
    font-family: var(--font-bebas-neue);
    font-size: 1.8em;
    color: var(--color-yellow);
    margin: 0 20px 15px 20px;
    display: block;
    text-align: left;
}

.menu-item .item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.menu-item .add-to-cart-btn {
    background-color: var(--color-yellow);
    color: var(--color-black);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.menu-item .add-to-cart-btn:hover {
    background-color: var(--color-white);
}

.menu-item .favorite-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu-item .favorite-btn:hover {
    color: #ff0000; /* Red for favorite */
    transform: scale(1.2);
}

/* Special Offers Section */
.offers-section {
    background-color: var(--color-dark-gray);
    text-align: center;
}

.offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.offer-card {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px var(--color-yellow);
}

.offer-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card h3 {
    font-size: 1.8em;
    margin: 20px 20px 10px 20px;
}

.offer-card p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 20px 15px 20px;
}

.offer-card .original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1em;
    margin-right: 10px;
}

.offer-card .offer-price {
    font-family: var(--font-bebas-neue);
    font-size: 2.2em;
    color: var(--color-yellow);
    display: block;
    margin-bottom: 15px;
}

.countdown-timer {
    font-family: var(--font-bebas-neue);
    font-size: 1.5em;
    color: var(--color-white);
    margin-bottom: 20px;
    background-color: rgba(255, 208, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--color-black);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px; /* Base row height */
    gap: 15px;
}

.gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* Adjust grid-row-end for masonry effect */
.masonry-grid img:nth-child(3n+1) { grid-row-end: span 2; } /* Taller items */
.masonry-grid img:nth-child(5n+2) { grid-row-end: span 3; } /* Even taller items */

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 208, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--color-white);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--color-yellow);
    text-decoration: none;
    cursor: pointer;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--color-dark-gray);
    text-align: center;
}

.review-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 50px;
}

.review-card {
    flex: 0 0 100%; /* Each card takes full width */
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 40px;
    margin: 0 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease-in-out;
}

.review-card .stars {
    color: var(--color-yellow);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.review-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.review-card .customer-name {
    font-weight: 600;
    color: var(--color-yellow);
}

.slider-nav {
    margin-top: 30px;
}

.slider-nav button {
    background-color: var(--color-yellow);
    color: var(--color-black);
    border: none;
    padding: 10px 15px;
    margin: 0 10px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background-color: var(--color-white);
    box-shadow: 0 0 10px var(--color-yellow);
}

/* Features Section */
.features-section {
    background-color: var(--color-black);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--color-dark-gray);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--color-yellow);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 208, 0, 0.5));
}

.feature-card h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-section {
    background-color: var(--color-dark-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info strong {
    color: var(--color-white);
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.social-icon:hover img {
    filter: grayscale(0%) brightness(100%) drop-shadow(0 0 10px var(--color-yellow));
    transform: scale(1.1);
}

.contact-form-container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-container h3 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-poppins);
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-yellow);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.5);
}

.contact-form .primary-btn {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    padding: 60px 0 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-logo img {
    height: 60px;
}

.footer h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--color-white);
}

.quick-links ul li {
    margin-bottom: 10px;
}

.quick-links a,
.social-media-footer a,
.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--color-yellow);
}

.social-media-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-media-footer .social-icon img {
    width: 35px;
    height: 35px;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.social-media-footer .social-icon:hover img {
    filter: grayscale(0%) brightness(100%) drop-shadow(0 0 8px var(--color-yellow));
    transform: scale(1.1);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-yellow);
}

.newsletter-form .primary-btn {
    border-radius: 0 5px 5px 0;
    padding: 10px 20px;
    margin-left: -1px; /* To make borders connect */
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
}

/* JavaScript-controlled classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none; /* Hide nav links on mobile */
        flex-direction: column;
        position: absolute;
        top: 80px; /* Below navbar */
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .navbar .nav-links a {
        font-size: 1.2em;
        padding: 10px 0;
        display: block;
    }

    .hamburger-menu {
        display: flex; /* Show hamburger on mobile */
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .hero-content h3 {
        font-size: 1.2em;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .secondary-btn {
        margin-left: 0;
    }

    .floating-card {
        width: 100px;
    }

    .floating-card.card-1 {
        top: 10%;
        left: 5%;
        width: 120px;
    }

    .floating-card.card-2 {
        bottom: 10%;
        right: 5%;
        width: 110px;
    }

    h2 {
        font-size: 2.5em;
    }

    .stats-cards, .menu-items-grid, .offer-cards-grid, .features-grid, .contact-grid, .footer-content {
        grid-template-columns: 1fr;
    }

    .review-card {
        margin: 0 10px;
        padding: 30px 20px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .newsletter-form .primary-btn {
        border-radius: 5px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content h3 {
        font-size: 1em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    h2 {
        font-size: 2em;
    }

    .stat-card h3 {
        font-size: 2em;
    }

    .menu-item h3 {
        font-size: 1.3em;
    }

    .menu-item .price {
        font-size: 1.5em;
    }

    .offer-card h3 {
        font-size: 1.5em;
    }

    .offer-card .offer-price {
        font-size: 1.8em;
    }

    .review-card h3 {
        font-size: 1.5em;
    }

    .feature-card h3 {
        font-size: 1.4em;
    }
}
