/* ==========================================================================
   ODNOWA RETREAT — DESIGN SYSTEM & STYLES
   ========================================================================== */

:root {
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Color Palette */
    --color-primary: #1E3E2B;       /* Deep Forest Green */
    --color-primary-light: #2D5A40; /* Earthy Sage Green */
    --color-accent: #C86D51;        /* Warm Terracotta / Clay */
    --color-gold: #D4A373;          /* Soft Warm Amber */
    --color-bg-light: #F7F5F0;      /* Warm Off-White Linen */
    --color-card-bg: #FFFFFF;
    --color-text-dark: #1F2421;     /* Soft Charcoal */
    --color-text-muted: #5C6560;
    --color-border: #E2DDD5;

    /* Layout & Glassmorphism */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-subtle: 0 4px 20px rgba(30, 62, 43, 0.06);
    --shadow-lg: 0 12px 36px rgba(30, 62, 43, 0.12);
    --transition-fast: 0.25s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 600;
}

p {
    color: var(--color-text-muted);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.bg-light {
    background-color: #EFECE6;
}

.text-center {
    text-align: center;
}

.text-gold { color: var(--color-gold) !important; }
.text-green { color: #2E7D32 !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(30, 62, 43, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 62, 43, 0.35);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    margin-left: 12px;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    transform: translateY(-2px);
}

/* Pitch Banner */
.pitch-banner {
    background: linear-gradient(90deg, #1E3E2B 0%, #2D5A40 100%);
    color: #FFFFFF;
    padding: 10px 24px;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
}

.pitch-banner-content {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-pitch-toggle {
    background: var(--color-gold);
    color: var(--color-primary);
    border: none;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-pitch-toggle:hover {
    background: #E5B484;
}

/* Header Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 245, 240, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 221, 213, 0.8);
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.logo-text small {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    display: block;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 6px 4px;
    position: relative;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-highlight {
    color: var(--color-accent) !important;
    font-weight: 600 !important;
    background: rgba(200, 109, 81, 0.08);
    padding: 6px 14px !important;
    border-radius: 20px;
}

.nav-highlight::after {
    display: none !important;
}

.nav-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(200, 109, 81, 0.1);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(200, 109, 81, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(200, 109, 81, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(200, 109, 81, 0); }
}

/* Mobile Nav Toggle Button */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--color-primary);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

/* Business Pitch Panel */
.pitch-panel {
    background-color: #1A3424;
    color: #FFFFFF;
    padding: 48px 0;
    border-bottom: 3px solid var(--color-gold);
}

.pitch-card-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.pitch-header h2 {
    color: var(--color-gold);
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.pitch-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.pitch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.pitch-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pitch-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.pitch-item h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.pitch-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(rgba(30, 62, 43, 0.75), rgba(30, 62, 43, 0.85)), url('images/hero_sauna.jpg') center/cover no-repeat;
    color: #FFFFFF;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(212, 163, 115, 0.2);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    color: #FFFFFF;
    font-size: 3.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto 36px;
    font-weight: 300;
}

.hero-actions {
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
}

/* Family Team Section */
.rodzina {
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.family-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.family-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
    border-color: var(--color-gold);
}

.family-avatar {
    font-size: 3rem;
    margin-bottom: 12px;
}

.family-card h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.family-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.family-card p {
    font-size: 0.88rem;
}

/* About Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.text-block h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.feature-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: rgba(200, 109, 81, 0.15);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.image-card {
    position: relative;
}

.rounded-img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    left: 32px;
    background: #FFFFFF;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--color-primary);
}

.image-badge span {
    display: block;
    font-weight: 700;
    color: var(--color-primary);
}

.image-badge small {
    color: var(--color-text-muted);
}

/* Activity Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.activity-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-fast);
    border: 1px solid var(--color-border);
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(30, 62, 43, 0.85);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.card-bullets {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
}

.card-bullets li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    position: relative;
    padding-left: 14px;
}

.card-bullets li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Pricing Wrapper */
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.price-box {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
    position: relative;
}

.participant-box {
    border-top: 4px solid var(--color-accent);
}

.owner-box {
    background: #173223;
    color: #FFFFFF;
    border-top: 4px solid var(--color-gold);
}

.owner-box h3 {
    color: #FFFFFF;
}

.owner-box p {
    color: rgba(255, 255, 255, 0.8);
}

.price-badge {
    display: inline-block;
    background: rgba(200, 109, 81, 0.12);
    color: var(--color-accent);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.owner-badge {
    background: rgba(212, 163, 115, 0.2);
    color: var(--color-gold);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 12px 0;
}

.price-amount span {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.price-features {
    list-style: none;
    margin-top: 24px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.price-features li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-features span {
    color: var(--color-accent);
    font-weight: bold;
}

.profit-highlight {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 20px 0;
}

.profit-highlight small {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.profit-highlight strong {
    font-size: 2.2rem;
}

.cost-breakdown {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.cost-total {
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 12px;
    margin-top: 8px;
    font-size: 1.05rem;
}

.owner-note {
    margin-top: 20px;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.85);
}

/* Schedule Tabs & Timeline */
.tabs-nav, .schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: var(--color-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 2px var(--color-gold);
}

.timeline-item .time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.timeline-content, .timeline-body {
    background: #FFFFFF;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
}

.timeline-content h4, .timeline-body h4 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.timeline-content p, .timeline-body p {
    font-size: 0.95rem;
}

/* Pitch CTA Box */
.pitch-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #152B1E 100%);
    color: #FFFFFF;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--color-gold);
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: #121A15;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer strong {
    color: #FFFFFF;
}

/* Responsive Rules & Mobile Menu Drawer */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .nav-badge {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        border-bottom: 2px solid var(--color-primary);
        gap: 16px;
        align-items: flex-start;
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 10px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--color-border);
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .grid-2, .pricing-wrapper { grid-template-columns: 1fr; gap: 32px; }
}
