:root {
    --primary: #d4af7a;
    --primary-dark: #b8945f;
    --secondary: #f8f5f0;
    --dark: #333;
    --light: #fff;
    --gray: #777;
    --light-gray: #f5f5f5;
}

.salon-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1074&q=80') no-repeat center center/cover;
    color: var(--light);
    padding: 80px 0;
    text-align: center;
}

.salon-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.salon-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.salon-hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: var(--primary);
    margin-right: 10px;
}

.rating-value {
    font-weight: 600;
}

.btn-book {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-book:hover {
    background-color: var(--primary-dark);
    color: var(--light);
}

/* Salon Details Section */
.salon-details {
    padding: 50px 0;
}

.salon-info {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.salon-info h2 {
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.info-item {
    display: flex;
    margin-bottom: 15px;
}

.info-item i {
    color: var(--primary);
    margin-right: 15px;
    width: 20px;
}

.info-item div {
    flex: 1;
}

.info-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--gray);
}

/* Services Section */
.services-section {
    padding: 50px 0;
    /* background-color: var(--secondary); */
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-image {
    height: 180px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 2.5rem;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Staff Section */
.staff-section {
    padding: 50px 0;
    /* background-color: var(--secondary); */
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.staff-card {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-image {
    height: 200px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 4rem;
}

.staff-content {
    padding: 20px;
}

.staff-content h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.staff-content p {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.staff-content .experience {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .salon-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .staff-grid {
        grid-template-columns: 1fr;
    }
}

.salon-hours-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 122, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salon-hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hours-header {
    background: linear-gradient(135deg, #d4af7a 0%, #b8945f 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hours-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    backdrop-filter: blur(10px);
}

.hours-title h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.hours-title p {
    margin: 5px 0 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

.hours-content {
    padding: 30px;
}

.hours-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #d4af7a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.hour-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hour-item.today {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border-left-color: #ff6b35;
}

.hour-item.closed {
    background: #f8f8f8;
    border-left-color: #ccc;
    color: #999;
}

.day {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.hour-item.closed .day {
    color: #999;
}

.time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.open-time, .close-time {
    color: #2e7d32;
    font-weight: 600;
}

.hour-item.closed .closed-text {
    color: #d32f2f;
    font-weight: 600;
}

.time-separator {
    color: #666;
}

.hour-item.closed .time-separator {
    color: #999;
}

.today-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.hours-footer {
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.current-status {
    text-align: center;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.open .status-dot {
    background: #4caf50;
}

.status-indicator.closed .status-dot {
    background: #f44336;
}

.status-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.status-indicator.open .status-text {
    color: #2e7d32;
}

.status-indicator.closed .status-text {
    color: #d32f2f;
}

.closing-time, .opening-time {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hours-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hours-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .hours-title h2 {
        font-size: 1.7rem;
    }
    
    .hours-content {
        padding: 20px;
    }
    
    .hour-item {
        padding: 12px 15px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .today-badge {
        position: static;
        margin-top: 5px;
    }
    
    .status-indicator {
        flex-direction: column;
        gap: 8px;
    }
}