/* Ambiance 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;
    --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(44, 26, 14, 0.85) 0%, rgba(61, 42, 26, 0.75) 50%, rgba(122, 59, 30, 0.85) 100%), url('../photos/dining-room.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(193, 90, 42, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 168, 67, 0.1) 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(--terracotta);
}

.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(--terracotta), var(--gold));
    margin-top: 24px;
}

/* Content Section */
.dining-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;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--cream);
    padding: 32px 28px;
    border-radius: 8px;
    border-left: 4px solid var(--terracotta);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(44, 26, 14, 0.12);
    border-left-color: var(--gold);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card-icon i {
    font-size: 1.4rem;
    color: var(--terracotta);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 8%;
    background: var(--cream);
}

.gallery-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item i {
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.gallery-item span {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: var(--cream);
}

.gallery-item:nth-child(1) {
    background: linear-gradient(160deg, #4A1E08, #8B3A1A);
}

.gallery-item:nth-child(2) {
    background: linear-gradient(160deg, #5C2E10, #C15A2A);
}

.gallery-item:nth-child(3) {
    background: linear-gradient(160deg, #3D1A06, #7A3B1E);
}

.gallery-item:nth-child(4) {
    background: linear-gradient(160deg, #6B3A20, #A0522D);
}

.gallery-item:nth-child(5) {
    background: linear-gradient(160deg, #4A2510, #8B4513);
}

/* Info Section */
.info-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.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: 16px;
}

.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(--terracotta);
    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/dining-table.jpeg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.info-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 26, 14, 0.3) 0%, rgba(122, 59, 30, 0.2) 100%);
}

.info-image i,
.info-image span {
    display: none;
}

/* Testimonial */
.testimonial-section {
    padding: 80px 8%;
    background: var(--dark);
    text-align: center;
}

.testimonial-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--cream);
    margin-bottom: 40px;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: rgba(250, 243, 224, 0.85);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    color: var(--cream);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 2px;
}

/* CTA Section */
.cta-section {
    padding: 80px 8%;
    background: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 12px;
}

.cta-section>p {
    color: var(--text-muted);
    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(--terracotta);
    color: var(--white);
}

.cta-btn-primary:hover {
    background: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 90, 42, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.cta-btn-secondary:hover {
    background: var(--terracotta);
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .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;
    }

    .dining-content,
    .gallery-section,
    .info-section,
    .testimonial-section,
    .cta-section {
        padding: 60px 5%;
    }
}
