/* About Section Styling */
.about-section {
    position: relative;
    padding: var(--section-padding);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/restaurant-interior.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax - JS will handle fallback */
    z-index: -2;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.6));
    z-index: -1;
}

.about-content {
    max-width: 800px;
    z-index: 1;
}

.about-content h2 {
    font-size: var(--fs-h2);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Info Bar Styling */
.info-bar {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    filter: invert(1); /* Assuming white/gold icons */
}

.info-text h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold-primary);
    margin-bottom: 0.3rem;
}

.info-text p, .info-text a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (min-width: 1024px) {
    .info-bar {
        flex-direction: row;
        justify-content: space-around;
        padding: 50px 80px;
    }
    
    .info-item {
        flex: 1;
        justify-content: center;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .info-item:last-child {
        border-right: none;
    }
}
