/* Sauna Cards */
.sauna-card {
    background-color: var(--color-snow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--ease);
}

.sauna-card:hover {
    transform: translateY(-4px);
}

.sauna-visual {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2rem;
    color: var(--color-cream);
}

/* Different sauna visuals using gradients */
.sauna-visual-1 {
    background: 
        linear-gradient(135deg, 
            rgba(139, 90, 43, 0.9) 0%, 
            rgba(74, 52, 36, 0.95) 100%),
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 10px, 
            rgba(0, 0, 0, 0.1) 10px, 
            rgba(0, 0, 0, 0.1) 11px);
}

.sauna-visual-2 {
    background: 
        radial-gradient(ellipse at 30% 50%, 
            rgba(26, 22, 18, 0.6) 0%, 
            rgba(26, 22, 18, 0.95) 100%),
        linear-gradient(180deg, 
            #2C1810 0%, 
            #1A1612 100%);
}

.sauna-visual-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(250, 250, 247, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(250, 250, 247, 0.08) 0%, transparent 30%);
}

.sauna-visual-3 {
    background: 
        linear-gradient(135deg, 
            rgba(91, 139, 160, 0.8) 0%, 
            rgba(45, 74, 92, 0.95) 100%);
}

.sauna-visual-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            transparent 0%, 
            rgba(250, 250, 247, 0.1) 100%);
}

.sauna-visual-4 {
    background: 
        linear-gradient(180deg, 
            rgba(74, 90, 60, 0.9) 0%, 
            rgba(42, 54, 36, 0.95) 100%);
}

.sauna-visual-4::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(250, 250, 247, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(250, 250, 247, 0.08) 0%, transparent 40%);
}

.sauna-number {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 5rem;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.sauna-temp {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.sauna-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sauna-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-soft);
    margin-bottom: 1rem;
}

.sauna-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-ink);
    margin-bottom: 1rem;
}

.sauna-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.sauna-features {
    list-style: none;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sauna-features li {
    font-size: 0.875rem;
    color: var(--color-text-soft);
    padding-left: 1.5rem;
    position: relative;
}

.sauna-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-wood);
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
