/* ========================================
   PRIVATE DINING SECTION - EXPERIENCE
   ======================================== */

.private-dining-section {
    padding: 100px 0;
    background-image: url('../../image/bg/wall.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #0f0f0f;
    position: relative;
}

.private-dining-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.private-dining-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Private Dining Content */
.private-dining-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.private-dining-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    width: fit-content;
}

.private-dining-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.private-dining-description {
    font-size: 1.05rem;
    color: var(--text-light-soft);
    line-height: 1.8;
    font-weight: 400;
}

/* Private Dining Features */
.private-dining-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 10px;
}

.private-dining-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-light-soft);
    font-weight: 500;
    padding: 12px 0;
    transition: transform 0.3s ease;
}

.private-dining-features .feature-item:hover {
    transform: translateX(5px);
}

.private-dining-features .feature-item i {
    font-size: 1.2rem;
    color: var(--accent-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* CTA Button */
.private-dining-content .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #f59e0b 100%);
    color: var(--text-light);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.private-dining-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, var(--accent-primary) 100%);
}

/* Private Dining Image */
.private-dining-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.private-dining-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    z-index: -1;
}

.private-dining-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s ease;
}

.private-dining-image-wrapper:hover .private-dining-image {
    transform: scale(1.02);
}

/* ========================================
   RESPONSIVE PRIVATE DINING SECTION
   ======================================== */

@media (max-width: 1024px) {
    .private-dining-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .private-dining-content {
        text-align: center;
        align-items: center;
    }

    .private-dining-image-wrapper {
        order: -1;
    }

    .private-dining-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    .private-dining-features {
        align-items: center;
    }

    .private-dining-features .feature-item {
        justify-content: center;
    }

    .private-dining-content .cta-button {
        margin: 0 auto;
    }

    .private-dining-image-wrapper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .private-dining-section {
        padding: 60px 0;
    }

    .private-dining-container {
        gap: 40px;
    }

    .private-dining-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .private-dining-description {
        font-size: 1rem;
    }

    .private-dining-features .feature-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .private-dining-section {
        padding: 40px 0;
    }

    .private-dining-container {
        padding: 0 4%;
        gap: 30px;
    }

    .private-dining-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }

    .private-dining-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .private-dining-features .feature-item:hover {
        transform: none;
    }

    .private-dining-content .cta-button {
        width: 100%;
        text-align: center;
    }
}
