.restaurant-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)), url('../images/about-us_image.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.restaurant-hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.restaurant-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.restaurant-hero-content p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.restaurant-about {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 2rem;
    color: #3498db;
    margin-top: 0.5rem;
}

.feature-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-main {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.restaurant-menu {
    padding: 5rem 0;
    background: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #3498db;
    color: #3498db;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #3498db;
    color: white;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0;
}

.menu-item-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-item-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-item-category {
    display: inline-block;
    background: linear-gradient(45deg, #3498db, #74b9ff);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.restaurant-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #74b9ff);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.info-card h2 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.info-card p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.map-container iframe {
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

.image-placeholder {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 3rem 2rem;
    color: #64748b;
    font-size: 1.1rem;
}

.image-placeholder p {
    margin: 0;
    font-weight: 500;
}

.hours p {
    margin-bottom: 0.5rem;
}

.specialties {
    padding: 5rem 0;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
}

.specialties .section-title {
    color: white;
}

.specialties .section-title::after {
    background: white;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialty-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.specialty-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.specialty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.specialty-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.specialty-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.menu-preview {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #74b9ff);
    border-radius: 2px;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.menu-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.content-section {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.address-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.address-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.address-section h3 {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.address-section p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
    
    .hero-overlay p {
        font-size: 1.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .category-tabs {
        justify-content: center;
    }
    
    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .restaurant-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h2 {
        font-size: 1.5rem;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .menu-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-card {
        padding: 1.5rem;
    }

    .content-section {
        padding: 6rem 0 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .restaurant-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .info-card {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .info-card h2 {
        font-size: 1.5rem;
    }
    
    .info-card p {
        font-size: 1rem;
    }
    
    .map-container {
        margin-top: 1rem;
    }
    
    .map-container iframe {
        height: 180px;
    }
}
