/* Dining Page Styles */

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    max-height: 300px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(54, 69, 79, 0.85), rgba(212, 175, 55, 0.75));
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Dining Intro */
.dining-intro {
    padding: 80px 0 40px;
    background: var(--bg-white);
}

/* Restaurant Section */
.restaurant-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.restaurant-section.alt {
    background: var(--bg-light);
}

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

.restaurant-content.reverse {
    direction: rtl;
}

.restaurant-content.reverse > * {
    direction: ltr;
}

.restaurant-image {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.restaurant-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.restaurant-badge i {
    font-size: 24px;
}

.restaurant-category {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.restaurant-details h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.restaurant-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.restaurant-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.restaurant-highlights {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.restaurant-highlights h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.restaurant-highlights ul {
    list-style: none;
}

.restaurant-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.restaurant-highlights li i {
    color: var(--primary-color);
}

.restaurant-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Bar Section */
.bar-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.bar-content {
    margin-top: 60px;
}

.bar-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.bar-image-main {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.bar-images-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.bar-images-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.bar-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bar-info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.bar-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bar-info-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.bar-info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.bar-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.bar-detail h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.bar-detail h4 i {
    color: var(--primary-color);
}

.bar-detail p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Room Service Section */
.room-service-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.room-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.room-service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.room-service-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.room-service-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.service-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-feature i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.service-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-feature p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.room-service-image {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* Responsive */
@media (max-width: 968px) {
    .restaurant-content,
    .restaurant-content.reverse,
    .room-service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .restaurant-features {
        grid-template-columns: 1fr;
    }
    
    .bar-gallery {
        grid-template-columns: 1fr;
    }
    
    .bar-images-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .restaurant-details h2,
    .room-service-text h2 {
        font-size: 2rem;
    }
    
    .bar-images-grid {
        grid-template-columns: 1fr;
    }
}
