/* Individual Spa Page Styles */

/* Spa Hero Section */
.spa-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f3f0 100%);
    padding: 100px 20px 50px;
}

.spa-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.spa-hero-text {
    flex: 1;
}

.spa-hero-text h1 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.spa-tagline {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.spa-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.spa-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.spa-hero-image {
    flex: 1;
    max-width: 500px;
}

.spa-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Photo Gallery */
.photo-gallery {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Unique Experience Section */
.unique-experience {
    padding: 100px 0;
    background: #f5f3f0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.experience-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.experience-item p {
    color: #666;
    line-height: 1.6;
}

/* Signature Treatments Section */
.signature-treatments {
    padding: 100px 0;
    background: white;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.treatment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.treatment-image {
    height: 250px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.1);
}

.treatment-content {
    padding: 2rem;
}

.treatment-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.treatment-duration {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.treatment-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.treatment-benefits {
    list-style: none;
    padding: 0;
}

.treatment-benefits li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.treatment-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Spa Info Section */
.spa-info {
    padding: 80px 0;
    background: #f5f3f0;
}

.spa-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: #667eea;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Spa CTA Section */
.spa-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.spa-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.spa-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.spa-cta .btn-primary {
    background: white;
    color: #667eea;
}

.spa-cta .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.spa-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.spa-cta .btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Responsive Design for Spa Pages */
@media (max-width: 768px) {
    .spa-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .spa-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .spa-hero-buttons {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .spa-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .spa-hero {
        padding: 120px 15px 50px;
    }
    
    .spa-hero-text h1 {
        font-size: 2rem;
    }
    
    .spa-tagline {
        font-size: 1.1rem;
    }
    
    .spa-description {
        font-size: 1rem;
    }
    
    .experience-item,
    .treatment-content,
    .info-card {
        padding: 1.5rem;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .treatment-card {
        margin: 0 10px;
    }
}

/* Animation for spa page elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience-item,
.treatment-card,
.info-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

.experience-item:nth-child(1) { animation-delay: 0.1s; }
.experience-item:nth-child(2) { animation-delay: 0.2s; }
.experience-item:nth-child(3) { animation-delay: 0.3s; }
.experience-item:nth-child(4) { animation-delay: 0.4s; }

.treatment-card:nth-child(1) { animation-delay: 0.1s; }
.treatment-card:nth-child(2) { animation-delay: 0.2s; }
.treatment-card:nth-child(3) { animation-delay: 0.3s; }

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
