/* Modern Restaurant Website Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #ffffff;
    --accent-color: #ff4d4d;
    --text-color: #333333;
    --light-text: #666666;
    --background: #ffffff;
    --light-background: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(230, 57, 70, 0.1);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    width: 120px;
    flex-shrink: 0;
}

.logo img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    color: var(--text-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Special Offers */
.special-offers {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

.offer-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/offer-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.offer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
    padding: 20px;
}

.testimonial.active {
    position: relative;
    opacity: 1;
}

.testimonial .rating {
    color: #ffd700;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial .customer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial .customer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial .customer-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial .customer-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-controls button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 10px 20px;
    color: #333;
    transition: color 0.3s ease;
}

.testimonial-controls button:hover {
    color: #d4af37;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: #d4af37;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background-color: var(--light-background);
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--light-text);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 0 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: 500;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background-color: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #4CAF50;
}

.notification.error {
    border-left: 4px solid #f44336;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 15px;
    }

    .logo {
        width: 100px;
    }

    .logo img {
        height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        padding: 20px;
        box-shadow: var(--box-shadow);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: var(--border-radius);
        padding: 15px;
    }
}

/* Language Toggle */
.lang-toggle {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.lang-toggle:hover {
    background-color: var(--primary-color);
    color: white;
}

.text-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.text-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Locations Section */
.locations {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.locations .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(230, 57, 70, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(230, 57, 70, 0.1);
}

.location-map {
    height: 300px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.map-link:hover img {
    transform: scale(1.05);
}

.map-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-link:hover::after {
    opacity: 1;
}

.location-info {
    padding: 1.5rem;
}

.location-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.location-info p {
    margin: 0.5rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info i {
    color: var(--primary-color);
    width: 20px;
}

.location-info .btn-primary {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.location-info .btn-primary:hover {
    background-color: var(--accent-color);
}

.location-info .directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    width: 100%;
    justify-content: center;
}

.location-info .directions-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-info .directions-btn i {
    font-size: 1.1rem;
    color: white;
}

.coming-soon {
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        margin-bottom: 2rem;
    }
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f5f5f5;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.map-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}

.map-link:hover .map-placeholder {
    background-color: #e8e8e8;
    transform: scale(1.02);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Delivery Partners Section */
.delivery-partners {
    background-color: #f5f5f5;
    padding: 4rem 0;
    margin: 4rem 0;
}

.delivery-partners .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #333333;
}

.delivery-partners .section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #666666;
    font-size: 1.1rem;
}

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

.delivery-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(230, 57, 70, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.delivery-partner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(230, 57, 70, 0.1);
}

.delivery-partner img {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.delivery-partner span {
    font-weight: 500;
    color: #333333;
    text-align: center;
}

@media (max-width: 768px) {
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-partner {
        padding: 1.5rem;
    }
    
    .delivery-partner img {
        width: 140px;
    }
}

/* Menu Page Styles */
.menu-hero {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
    background-color: var(--secondary-color);
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2070');
    background-size: cover;
    background-position: center;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.menu-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--accent-color);
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.menu-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Menu Filters */
.menu-filters {
    padding: 2rem 0;
    background-color: var(--secondary-color);
    border-bottom: 1px solid rgba(230, 57, 70, 0.1);
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 2.5rem 1rem 1rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.dietary-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.dietary-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dietary-btn:hover,
.dietary-btn.active {
    background: #e67e22;
    border-color: #e67e22;
    color: white;
}

/* Popular Items */
.popular-items {
    padding: 4rem 0;
    background: white;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Menu Grid */
.menu-grid {
    padding: 4rem 0;
    background: #f8f8f8;
}

.menu-sort {
    margin-bottom: 2rem;
    text-align: right;
}

.menu-sort select {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    background: white;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-sort select:focus {
    outline: none;
    border-color: #e67e22;
}

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

.menu-item {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(230, 57, 70, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(230, 57, 70, 0.1);
}

.menu-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.menu-item-image i {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: 50%;
    color: #e67e22;
    font-size: 0.8rem;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.menu-item-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.rating i {
    color: #ffc107;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Special Offers */
.menu-offers {
    padding: 4rem 0;
    background: white;
}

.offer-banner {
    background: linear-gradient(135deg, #e67e22, #d35400);
    padding: 3rem;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.offer-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.offer-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.offer-content .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #e67e22;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.offer-content .btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-hero {
        height: 60vh;
        margin-top: 70px;
    }

    .menu-hero h1 {
        font-size: 2.5rem;
    }

    .menu-hero p {
        font-size: 1.1rem;
    }

    .filter-buttons {
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

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

    .offer-banner {
        padding: 2rem;
    }

    .offer-content h3 {
        font-size: 1.5rem;
    }

    .offer-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-hero {
        height: 50vh;
        margin-top: 60px;
    }

    .menu-hero h1 {
        font-size: 2rem;
    }

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

    .dietary-filters {
        flex-wrap: wrap;
    }

    .dietary-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
}

.title-main {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0.5rem 0;
    position: relative;
    display: inline-block;
}

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

.title-sub {
    font-size: 1.2rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.hero-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1585032226651-759b368d7246?q=80&w=2070');
}

.hero-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1583835746434-cf1534674b41?q=80&w=2074');
}

.hero-slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1547592180-85f173990554?q=80&w=2070');
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .title-line {
        font-size: 1.2rem;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 1rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 0.9rem;
    }
}

/* Update section backgrounds */
.section {
    background-color: var(--light-background);
    padding: 4rem 0;
}

/* Update card styles */
.menu-item,
.location-card,
.testimonial-card {
    background-color: white;
    border: 1px solid rgba(230, 57, 70, 0.1);
    box-shadow: 0 2px 4px rgba(230, 57, 70, 0.05);
}

.menu-item:hover,
.location-card:hover {
    box-shadow: 0 8px 15px rgba(230, 57, 70, 0.1);
}

/* Update testimonial cards */
.testimonial-card {
    background-color: var(--secondary-color);
    border: 1px solid rgba(230, 57, 70, 0.1);
    box-shadow: 0 2px 4px rgba(230, 57, 70, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 8px 15px rgba(230, 57, 70, 0.1);
}

/* Update footer */
.footer {
    background-color: var(--primary-color);
    color: white;
}

.footer a:hover {
    color: var(--accent-color);
} 