:root {
    --primary-yellow: #FFD21F;
    --primary-black: #222222;
    --primary-white: #FFFFFF;
    --secondary-orange: #FFB800;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #757575;
    --text-color: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-gray);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background-color: var(--primary-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-shadow: none;
}

.logoimg {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

.nav-links a.active {
    color: var(--primary-yellow);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-yellow);
    bottom: -5px;
    left: 0;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
}

.cart-icon i {
    font-size: 1.5rem;
    color: var(--text-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-orange);
    color: var(--primary-black);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: bold;
}

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

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: var(--primary-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-yellow);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--secondary-orange);
    font-weight: 500;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background-color: var(--light-gray);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-value {
    margin: 0 10px;
    font-weight: 500;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--medium-gray);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cart-total span:last-child {
    color: var(--secondary-orange);
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-primary:hover {
    background-color: var(--secondary-orange);
}

.btn-secondary {
    background-color: var(--light-gray);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--medium-gray);
}

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

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: var(--dark-gray);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--medium-gray);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 1001;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1565299624946-b28f40a0ca4b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--primary-white);
    text-align: center;
}

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

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--primary-yellow);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 50px;
}

/* Featured Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
}

.product-badge {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-orange);
}

.add-to-cart-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-orange);
}

/* Special Offer */
.special-offer-card {
    background-color: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.special-offer-image {
    height: 300px;
    overflow: hidden;
}

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

.special-offer-content {
    padding: 30px;
}

.special-offer-badge {
    display: inline-block;
    background-color: var(--secondary-orange);
    color: var(--primary-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.special-offer-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.special-offer-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.special-offer-content strong {
    color: var(--secondary-orange);
    font-size: 1.2rem;
}

.special-offer-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.special-offer-btn:hover {
    background-color: var(--secondary-orange);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--primary-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--medium-gray);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Menu Page */
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    background-color: var(--primary-white);
    border: 1px solid var(--medium-gray);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover {
    background-color: var(--light-gray);
}

.category-btn.active {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--primary-yellow);
}

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

.menu-item {
    background-color: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.menu-item-image {
    height: 180px;
    overflow: hidden;
}

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

.menu-item-content {
    padding: 20px;
}

.menu-item-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.menu-item-description {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-orange);
}

/* Restaurant Status */
#restaurant-status {
    margin-bottom: 20px;
    text-align: center;
}

.status-open {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
}

.status-closed {
    display: inline-block;
    background-color: #F44336;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
}

/* About Page */
.about-content {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.mission-box, .vision-box {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mission-box h3, .vision-box h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.values-section {
    margin-bottom: 60px;
}

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

.value-card {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.location-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 40px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.location-info {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.location-info p {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.location-info i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.distance-info {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

/* Footer */
footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 70px 0 20px;
}

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

.footer-column h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-white);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: var(--primary-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .special-offer-card {
        flex-direction: column;
    }
    
    .special-offer-image {
        height: 200px;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Location Section on Home Page */
.location-section {
    background-color: var(--light-gray);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.location-info {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.location-info p {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.location-info i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.distance-info {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

/* Branch info in cart */
.branch-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.branch-info i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-right: 10px;
}

.branch-info div {
    flex: 1;
}

.branch-info strong {
    display: block;
    margin-bottom: 3px;
}

.branch-info small {
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
}