/* Ambiance Private Dining Page Styles */
:root {
    --cream: #FAF3E0;
    --cream-dark: #F2E4C4;
    --terracotta: #C15A2A;
    --terracotta-light: #D97A4A;
    --terracotta-pale: #F2D5C0;
    --brown: #7A3B1E;
    --brown-light: #A0522D;
    --gold: #D4A843;
    --gold-light: #E8C56A;
    --purple: #5A2E82;
    --purple-light: #8B4DB8;
    --dark: #2C1A0E;
    --text-body: #4A2E1A;
    --text-muted: #8B6045;
    --white: #FFFDF7;
}

.ambiance-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(135deg, rgba(90, 46, 130, 0.85) 0%, rgba(139, 77, 184, 0.75) 50%, rgba(90, 46, 130, 0.85) 100%), url('../photos/IMG-20260318-WA0009.jpg.jpeg');
    background-size: cover;
    background-position: center;
    padding: 100px 8% 80px;
    position: relative;
    overflow: hidden;
}

.ambiance-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(139, 77, 184, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 168, 67, 0.15) 0%, transparent 40%);
}

.ambiance-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.ambiance-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ambiance-hero-icon i {
    font-size: 2.2rem;
    color: var(--gold);
}

.ambiance-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.2;
}

.ambiance-hero-title span {
    color: var(--purple-light);
}

.ambiance-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(250, 243, 224, 0.75);
    line-height: 1.7;
    max-width: 500px;
}

.ambiance-hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold));
    margin-top: 24px;
}

/* Content Section */
.private-content {
    padding: 80px 8%;
    background: var(--white);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.content-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 16px;
}

.content-intro p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Rooms Section */
.rooms-section {
    margin-bottom: 60px;
}

.rooms-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.room-card {
    background: var(--cream);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(44, 26, 14, 0.15);
}

.room-image {
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.room-image i {
    font-size: 2.2rem;
    display: none;
}

.room-image span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    display: none;
}

.room-card:nth-child(1) .room-image {
    background: url('../photos/IMG-20260318-WA0009.jpg.jpeg') center/cover no-repeat;
}
.room-card:nth-child(1)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 46, 130, 0.4) 0%, rgba(90, 46, 130, 0.2) 100%);
}

.room-card:nth-child(2) .room-image {
    background: url('../photos/IMG-20260318-WA0012.jpg.jpeg') center/cover no-repeat;
}
.room-card:nth-child(2)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(193, 90, 42, 0.4) 0%, rgba(193, 90, 42, 0.2) 100%);
}

.room-card:nth-child(3) .room-image {
    background: url('../photos/IMG-20260318-WA0011.jpg.jpeg') center/cover no-repeat;
}
.room-card:nth-child(3)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 26, 14, 0.4) 0%, rgba(44, 26, 14, 0.2) 100%);
}

.room-details {
    padding: 24px;
}

.room-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.room-details>p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.room-capacity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--purple);
    font-weight: 600;
}

.room-capacity i {
    font-size: 1rem;
}

/* Services */
.services-section {
    margin-bottom: 60px;
}

.services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    background: var(--cream);
    padding: 28px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44, 26, 14, 0.1);
}

.service-item-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-item-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Booking Section */
.booking-section {
    padding: 60px 8%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    text-align: center;
    color: var(--white);
}

.booking-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.booking-section>p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.booking-btn {
    display: inline-block;
    background: var(--white);
    color: var(--purple);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Info Section */
.info-section {
    padding: 80px 8%;
    background: var(--cream);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.info-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    color: var(--dark);
    margin-bottom: 20px;
}

.info-content > p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.info-list {
    list-style: none;
    margin-top: 24px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-body);
    font-size: 0.95rem;
}

.info-list li i {
    width: 28px;
    height: 28px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.info-image {
    aspect-ratio: 4/3;
    border-radius: 12px;
    background: url('../photos/IMG-20260318-WA0009.jpg.jpeg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.info-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 46, 130, 0.3) 0%, rgba(139, 77, 184, 0.2) 100%);
}

.info-image i,
.info-image span {
    display: none;
}

/* CTA */
.cta-section {
    padding: 80px 8%;
    background: var(--dark);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--cream);
    margin-bottom: 12px;
}

.cta-section>p {
    color: rgba(250, 243, 224, 0.75);
    font-size: 1rem;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn-primary {
    background: var(--purple);
    color: var(--white);
}

.cta-btn-primary:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 46, 130, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.cta-btn-secondary:hover {
    background: var(--cream);
    color: var(--dark);
}

/* Responsive */
@media (max-width: 992px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ambiance-hero {
        min-height: 60vh;
        padding: 100px 5% 60px;
    }

    .private-content,
    .booking-section,
    .info-section,
    .cta-section {
        padding: 60px 5%;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
