.our-saloon-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.our-saloon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23F6BE37" opacity="0.03"><polygon points="0,0 1000,100 1000,0"/></svg>') no-repeat center;
    background-size: cover;
    pointer-events: none;
}

.our-saloon-content {
    position: relative;
    z-index: 2;
}

.our-saloon-header {
    text-align: center;
    margin-bottom: 4rem;
}

.our-saloon-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #330104;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.our-saloon-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #F6BE37, #f0a500);
    border-radius: 2px;
}

.our-saloon-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.our-saloon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.our-saloon-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.our-saloon-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    aspect-ratio: 3/4;
}

.our-saloon-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.our-saloon-main-image:hover .our-saloon-photo {
    transform: scale(1.05);
}

.our-saloon-gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.our-saloon-thumb {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

.our-saloon-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.our-saloon-info {
    padding: 2rem;
}

.our-saloon-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #330104;
    margin-bottom: 1.5rem;
}

.our-saloon-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.our-saloon-features {
    margin-bottom: 3rem;
}

.our-saloon-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid #F6BE37;
    transition: all 0.3s ease;
}

.our-saloon-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.95);
}

.our-saloon-feature-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F6BE37, #f0a500);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(246, 190, 55, 0.3);
}

.our-saloon-feature-content {
    flex: 1;
}

.our-saloon-feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #330104;
    margin-bottom: 0.5rem;
}

.our-saloon-feature-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.our-saloon-cta {
    text-align: center;
}

.our-saloon-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #330104, #4a0106);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.our-saloon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.our-saloon-btn:hover::before {
    left: 100%;
}

.our-saloon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-saloon-section {
        padding: 4rem 0;
        margin-top: 0; /* Ensure no extra margin that could cause spacing issues */
    }
    
    .our-saloon-title {
        font-size: 2.5rem;
    }
    
    .our-saloon-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .our-saloon-main-image {
        aspect-ratio: 3/4;
    }
    
    .our-saloon-photo {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .our-saloon-gallery-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .our-saloon-thumb {
        width: 100%;
        aspect-ratio: 3/4;
        object-fit: cover;
        object-position: center;
    }
    
    .our-saloon-info {
        padding: 0;
    }
    
    .our-saloon-info-title {
        font-size: 1.8rem;
    }
    
    .our-saloon-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .our-saloon-feature-icon {
        align-self: center;
    }
    
    .our-saloon-feature-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .our-saloon-section {
        padding: 3rem 0; /* Consistent with hero section padding */
    }
    
    .our-saloon-title {
        font-size: 2rem;
    }
    
    .our-saloon-main-image {
        aspect-ratio: 3/4;
    }
    
    .our-saloon-gallery-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .our-saloon-thumb {
        width: 100%;
        aspect-ratio: 3/4;
        object-fit: cover;
        object-position: center;
    }
    
    .our-saloon-feature {
        padding: 1rem;
    }
    
    .our-saloon-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
