/* ==================== DINING & EVENTS PAGE ==================== */

/* Hero Section */
.dining-hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(9, 24, 100, 0.5), rgba(9, 24, 100, 0.7)),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 100px;
}

.dining-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 24, 100, 0.8), rgba(9, 24, 100, 0.6));
}

.dining-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.dining-hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.dining-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.dining-hero-desc {
    font-size: 18px;
    letter-spacing: 2px;
    opacity: 0.95;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ==================== TAB NAVIGATION ==================== */
.tab-navigation {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 100px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.tab-btn {
    flex: 1;
    max-width: 300px;
    background: transparent;
    border: none;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn svg {
    color: #999;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: #091864;
    background: rgba(9, 24, 100, 0.02);
}

.tab-btn:hover svg {
    color: #091864;
}

.tab-btn.active {
    color: #091864;
    border-bottom-color: #091864;
    background: rgba(9, 24, 100, 0.03);
}

.tab-btn.active svg {
    color: #091864;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #091864;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: #091864;
    margin-bottom: 20px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* ==================== DINING TAB ==================== */

/* Intro Section */
.dining-intro {
    padding: 100px 50px;
    background: white;
}

/* Restaurants Section */
.restaurants-section {
    padding: 80px 50px;
    background: #f8f8f8;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}
.restaurant-card {
    background: white;
    border-radius: 0;
    
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.restaurant-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.restaurant-image img {
    object-position: center;
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.1);
}

.restaurant-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: #091864;
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.restaurant-info {
    padding: 30px 28px;
}


.restaurants-section {
    padding: 70px 40px;
}
.restaurant-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #091864;
    margin-bottom: 10px;
}

.restaurant-type {
    color: #999;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.restaurant-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 14px;
}

.restaurant-details {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.detail-item svg {
    color: #091864;
}

.restaurant-link {
    display: inline-block;
    color: #091864;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid #091864;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.restaurant-link:hover {
    padding-left: 10px;
    color: #0a1f7a;
}

/* Signature Dishes */
.signature-section {
    padding: 100px 50px;
    background: white;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dish-card {
    background: #f8f8f8;
    overflow: hidden;
    transition: transform 0.3s;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-image {
    height: 250px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-info {
    padding: 25px;
}

.dish-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: #091864;
    margin-bottom: 8px;
}

.dish-info p {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.dish-price {
    color: #091864;
    font-size: 20px;
    font-weight: 600;
}

/* ==================== EVENTS TAB ==================== */

.event-intro {
    padding: 100px 50px;
    background: white;
}

/* Venues Section */
.venues-section {
    padding: 80px 50px 100px;
    background: #f8f8f8;
}

.venue-category {
    margin-bottom: 80px;
}

.venue-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: #091864;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #091864;
    margin: 20px auto 0;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.venue-card {
    background: white;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e5e5;
}

.venue-card.featured {
    border: 2px solid #091864;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.venue-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #091864;
    color: white;
    padding: 10px 24px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.venue-card.featured .venue-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f4e1a1 100%);
    color: #091864;
}

.venue-info {
    padding: 40px 35px;
}

.venue-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    color: #091864;
    margin-bottom: 15px;
}

.venue-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.venue-specs {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.spec-item svg {
    color: #091864;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: #f0f0f0;
    color: #666;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
}

.venue-link {
    display: inline-block;
    background: #091864;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
}

.venue-link:hover {
    background: #0a1f7a;
    transform: translateX(5px);
}

/* Event Services */
.event-services {
    padding: 100px 50px;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon svg {
    color: #091864;
}

.service-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: #091864;
    margin-bottom: 12px;
}

.service-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== POSTS TAB ==================== */

.posts-section {
    padding: 100px 50px;
    background: white;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.post-card {
    background: white;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.post-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #091864;
    color: white;
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
}

.post-meta svg {
    color: #091864;
}

.post-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: #091864;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.post-link {
    display: inline-flex;
    align-items: center;
    color: #091864;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
}

.post-link:hover {
    gap: 10px;
    color: #0a1f7a;
}

.load-more {
    text-align: center;
}

.btn-load-more {
    background: transparent;
    color: #091864;
    border: 2px solid #091864;
    padding: 15px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: #091864;
    color: white;
    transform: translateY(-2px);
}

/* ==================== CTA SECTION ==================== */

.reservation-cta {
    padding: 100px 50px;
    background: linear-gradient(135deg, #091864, #0a1f7a);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #091864;
    padding: 18px 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 18px 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #091864;
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .tab-buttons {
        padding: 0 20px;
    }

    .venues-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dining-hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 80px;
    }

    .dining-hero-content h1 {
        font-size: 48px;
    }

    .tab-navigation {
        top: 80px;
    }

    .tab-buttons {
        flex-direction: column;
        padding: 0;
    }

    .tab-btn {
        max-width: 100%;
        border-bottom: 1px solid #e5e5e5;
        border-right: none;
    }

    .tab-btn.active {
        border-bottom: 3px solid #091864;
    }

    .section-title {
        font-size: 36px;
    }

    .restaurants-grid {
        grid-template-columns: 1fr;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .container {
        padding: 0 20px;
    }

    .dining-intro,
    .event-intro,
    .posts-section {
        padding: 60px 20px;
    }

    .restaurants-section,
    .venues-section {
        padding: 60px 20px;
    }

    .signature-section,
    .event-services {
        padding: 60px 20px;
    }

    .reservation-cta {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .dining-hero-content h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .tab-btn span {
        font-size: 12px;
    }

    .venue-info h4,
    .restaurant-info h3 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}