/* ========================================
   Sauna Individual Pages Styles
   ======================================== */

/* Navigation Override for Sauna Pages */
.nav-container {
    justify-content: space-between;
}

.back-link {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    transition: var(--transition-smooth);
}

.back-link:hover {
    background: var(--secondary-color);
    transform: translateX(-3px);
}

/* Sauna Hero Section */
.sauna-hero {
    height: 60vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

/* Hero images on sauna pages - full size cover */
.sauna-hero .hero-background .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sauna-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.sauna-name {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.sauna-location {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 500;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

/* Main Content */
.sauna-content {
    background: var(--light-color);
    padding: 80px 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Sections */
.info-section,
.philosophy-section,
.quotes-section,
.trail-info {
    margin-bottom: 80px;
}

.info-section h2,
.philosophy-section h2,
.quotes-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

/* Philosophy Text Container */
.philosophy-section {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.philosophy-section h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    margin: 0;
    padding: 30px 40px;
    border-radius: 15px 15px 0 0;
}

.philosophy-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: justify;
    padding: 30px 40px;
    margin: 0;
}

.philosophy-text + .philosophy-text {
    padding-top: 0;
}

.philosophy-text:last-child {
    padding-bottom: 40px;
}

/* Quote Cards */
.quote-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--secondary-color);
}

.quote-card blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.quote-card blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -15px;
    left: 0;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-card cite {
    display: block;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    font-style: normal;
    text-align: right;
}

/* Trail Info Box */
.trail-info {
    text-align: center;
}

.info-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 50px 40px;
    border-radius: 20px;
    color: var(--text-light);
    box-shadow: 0 10px 40px rgba(21, 152, 149, 0.3);
}

.info-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Image Gallery Section */
.gallery-section {
    margin-bottom: 80px;
}

.gallery-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Back Button */
.back-button-container {
    text-align: center;
    margin-top: 60px;
}

.back-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--dark-color);
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.back-button:hover {
    background: var(--accent-color);
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sauna-name {
        font-size: 2.5rem;
    }
    
    .sauna-location {
        font-size: 1.1rem;
    }
    
    .sauna-hero {
        height: 50vh;
        min-height: 400px;
        padding-bottom: 40px;
    }
    
    .philosophy-text,
    .quote-card {
        padding: 30px 25px;
    }
    
    .info-box {
        padding: 40px 30px;
    }
    
    .info-box h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .sauna-name {
        font-size: 2rem;
    }
    
    .back-link {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
    
    .philosophy-text,
    .quote-card {
        padding: 25px 20px;
        text-align: left;
    }
    
    .quote-card blockquote {
        font-size: 1.05rem;
    }
}
