/* OAZEN - Earth Tones & Minimalism */

:root {
    --primary: #2D4A3E;
    --accent: #D4A574;
    --dark: #1A1A1A;
    --light: #F5F5F0;
    --white: #FFFFFF;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-fire.jpg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.75) 0%, rgba(29, 38, 34, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 40px;
}

.hero-description {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.hero-cta:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 32px;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Retreat Section */
.retreat {
    padding: 120px 0;
    background: var(--white);
}

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

.retreat-text .lead {
    font-size: 24px;
    line-height: 1.6;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 300;
}

.retreat-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.retreat-highlight {
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.08) 0%, rgba(212, 165, 116, 0.12) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    margin: 40px 0 60px 0;
}

.retreat-highlight p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--primary);
    margin: 0;
}

.retreat-highlight strong {
    color: var(--accent);
    font-weight: 600;
}

.retreat-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .retreat-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 500;
}

.feature p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Miejsce Section */
.miejsce {
    padding: 120px 0;
    background: var(--light);
}

.miejsce-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.miejsce-text .lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 300;
}

.miejsce-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.miejsce-details {
    display: grid;
    gap: 24px;
}

.detail {
    padding: 20px;
    background: var(--white);
    border-left: 3px solid var(--accent);
    font-size: 16px;
    line-height: 1.6;
}

.detail strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.gallery-main {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}

.gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.gallery-main:hover,
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Doswiadczenia Section */
.doswiadczenia {
    padding: 120px 0;
    background: var(--white);
}

.doswiadczenia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.doswiadczenie-card {
    padding: 40px 30px;
    background: var(--light);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.doswiadczenie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.doswiadczenie-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 500;
}

.doswiadczenie-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Kontakt Section */
.kontakt {
    padding: 120px 0;
    background: var(--light);
}

.kontakt-content {
    max-width: 800px;
    margin: 0 auto;
}

.kontakt-info .lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 300;
}

.kontakt-info p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.kontakt-details {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.kontakt-item {
    padding: 20px;
    background: var(--white);
    border-left: 3px solid var(--accent);
    font-size: 16px;
}

.kontakt-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 8px;
}

.kontakt-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.kontakt-item a:hover {
    text-decoration: underline;
}

.kontakt-note {
    padding: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    line-height: 1.9;
    font-size: 18px;
}

.kontakt-note strong {
    color: var(--accent);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 12px;
    font-weight: 300;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .miejsce-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .gallery-main {
        grid-row: auto;
        grid-column: auto;
    }

    .hero-title {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 60px;
        letter-spacing: 8px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .retreat,
    .miejsce,
    .doswiadczenia,
    .kontakt {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .retreat-features,
    .doswiadczenia-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: 6px;
    }

    .hero-cta {
        padding: 12px 32px;
        font-size: 12px;
    }
}
