/* ====================================
   SECTION SALONS
   ==================================== */

.salons {
    background: #f9f9f9;
}

.salons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.salon-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.salon-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-style: italic;
    object-fit: cover;
}

.salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-info {
    padding: 30px;
}

.salon-info h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.salon-info p {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.salon-info strong {
    color: #d4af37;
    min-width: 80px;
}

.salon-info a {
    color: #1a1a1a;
    text-decoration: none;
}

.salon-info a:hover {
    color: #d4af37;
}
