/* Restaurants Page Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Restaurants Section */
.restaurants {
    padding: 5rem 0;
    background: #f8f9fa;
}

.restaurant-single {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.restaurant-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.restaurant-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.restaurant-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.restaurant-content {
    padding: 2rem;
}

.restaurant-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.restaurant-info {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #666;
}

.info-item i {
    color: #d4af37;
    width: 16px;
    text-align: center;
}

.restaurant-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.restaurant-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.restaurant-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.restaurant-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .restaurant-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .restaurant-card {
        margin: 0 10px;
    }

    .restaurant-actions {
        flex-direction: column;
    }

    .restaurant-actions .btn {
        width: 100%;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .restaurant-content {
        padding: 1.5rem;
    }

    .restaurant-features {
        justify-content: center;
    }
}
