/* ===================================
   Salon Detail Page Styles
   =================================== */

/* Hero Section */
.salon-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

.salon-hero .hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.salon-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.salon-hero .hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.salon-hero .salon-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.05em;
}

.salon-hero .salon-concept {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: #f8f8f8;
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f8f8;
    padding: 1rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

/* Main Content */
.salon-detail-content {
    padding: 4rem 0;
}

.salon-detail-content .section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.salon-detail-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #d4af37, #f4e5c3);
}

/* Description Box */
.salon-description-box {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.salon-description-box p {
    margin-bottom: 1.5rem;
}

.salon-description-box p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.salon-features-section {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.feature-card i {
    font-size: 1.5rem;
    color: #d4af37;
    flex-shrink: 0;
}

.feature-card span {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

/* Gallery Section */
.salon-gallery-section {
    margin-bottom: 4rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Salon Info Section */
.salon-info-section {
    margin-bottom: 4rem;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    gap: 1.5rem;
    transition: box-shadow 0.3s;
}

.info-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4e5c3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-content p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

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

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #d4af37 !important;
    margin-top: 0.5rem;
}

.info-link:hover {
    text-decoration: underline;
}

/* Map Section */
.salon-map-section {
    margin-bottom: 4rem;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Menu Section */
.salon-menu-section {
    margin-bottom: 4rem;
}

.menu-button-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

/* CTA Section */
.salon-cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.salon-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.salon-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.salon-cta-section .section-title {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.salon-cta-section .section-title::after {
    background: linear-gradient(to right, #d4af37, #f4e5c3);
}

.salon-cta-section > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-buttons .button {
    min-width: 220px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons .button i {
    font-size: 1.2rem;
}

.cta-buttons .button.primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-buttons .button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4e5c3 0%, #d4af37 100%);
}

.cta-buttons .button.secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid white;
}

.cta-buttons .button.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .button.hollow {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .button.hollow:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

/* Back to List */
.back-to-list {
    background: #f8f8f8;
    padding: 3rem 0;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .salon-hero {
        height: 50vh;
        min-height: 300px;
        padding: 0;
    }
    .salon-hero .hero-content{
        padding-top: 0;
        top: 40%;
    }

    .salon-hero .salon-title {
        font-size: 2rem;
    }

    .salon-hero .salon-concept {
        font-size: 1rem;
    }

    .salon-detail-content {
        padding: 2rem 0;
    }

    .salon-detail-content .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .salon-description-box {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .map-container {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .button {
        width: 100%;
    }

    .salon-cta-section {
        padding: 3rem 1.5rem;
    }
    
    .salon-cta-section .section-title {
        font-size: 1.3rem;
    }
    
    .salon-cta-section > p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons .button {
        min-width: 180px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .salon-hero .salon-title {
        font-size: 1.5rem;
    }

    .salon-hero .salon-concept {
        font-size: 0.9rem;
    }

    .salon-description-box {
        padding: 1rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}