/*
Theme Name: DAP Kielce - Obozy i Półkolonie
Theme URI: https://polkolonie.ksdap.pl/
Author: Webmaster Grzegorz Baran
Author URI: mailto:biuro@itkielce.pl
Description: Oficjalny motyw WordPress dla obozów i półkolonii DAP Kielce z integracją WooCommerce.
Version: 1.0.1
Text Domain: dap-polkolonie
*/

/* ==========================================================================
   DAP KIELCE - OBOZY & PÓŁKOLONIE 2027 (PREMIUM SHARP / STRAIGHT ANGLES SYSTEM)
   ========================================================================== */

:root {
    --primary: #f97316;
    --primary-hover: #ea580c;
    --primary-soft: rgba(249, 115, 22, 0.08);
    --secondary: #0b132b;
    --secondary-surface: #131c38;
    --accent-blue: #0284c7;
    --accent-blue-soft: #f0f9ff;
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --bg-page: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-card: #ffffff;
    --border-light: #e2e8f0;
    --border-focus: #cbd5e1;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(11, 19, 43, 0.06);
    --shadow-hover: 0 20px 35px -10px rgba(11, 19, 43, 0.12);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    border-radius: 0 !important; /* Proste kąty w całym projekcie */
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.max-600 {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.6rem;
    }
}

h2 {
    font-size: 2.1rem;
    letter-spacing: -0.015em;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    h2 {
        font-size: 2.4rem;
    }
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.15rem;
}

p {
    margin-bottom: 1.15rem;
}

.lead {
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1.6;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-hover);
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 3.5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Buttons & CTA - Sharp Angles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.85rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 19, 43, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.logo-img {
    height: 58px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.2s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-subtitle {
    color: var(--text-light);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.15rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-home-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: var(--transition);
    padding: 0.25rem;
}

.nav-home-icon:hover {
    color: var(--primary) !important;
    transform: translateY(-1px);
}

.btn-nav {
    background: var(--primary);
    color: #ffffff !important;
    padding: 0.55rem 1.25rem;
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: var(--primary-hover);
}

/* Header Social Media Bar */
.nav-socials {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
    padding-left: 0.85rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.25s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-social-link:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
}

.nav-social-link.social-fb:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.nav-social-link.social-ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f;
}

.nav-social-link.social-yt:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
}

@media (min-width: 1160px) {
    .nav-links {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 1159px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
    }
    .nav-socials {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        margin-top: 0.5rem;
        gap: 1rem;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 11.5rem;
    padding-bottom: 7.5rem;
    background-color: var(--secondary);
    background-image: 
        linear-gradient(rgba(11, 19, 43, 0.8), rgba(11, 19, 43, 0.95)),
        url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-glow-overlay {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 860px;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    display: inline-block;
}

.hero-section h1 {
    color: #ffffff;
    margin-bottom: 1.35rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2.25rem;
    line-height: 1.7;
    max-width: 740px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-partner-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 0.88rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
}

.hero-partner-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem 0.85rem;
    transition: var(--transition);
}

.hero-partner-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-partner-logo {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

.partner-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================================================
   Editorial About / Co Oferujemy Section
   ========================================================================== */
.about-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

.values-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-row {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.value-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-soft);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.value-row h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.value-row p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.about-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.about-badge-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(11, 19, 43, 0.96);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.badge-metric {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    color: #e2e8f0;
    line-height: 1.4;
}

/* Standardy każdego turnusu */
.turnus-standards-wrapper {
    margin-top: 4.5rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--border-light);
}

.turnus-standards-header {
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.turnus-standards-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.turnus-standards-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.standard-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.standard-card:hover {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.standard-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.standard-info h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--secondary);
}

.standard-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.55;
}

/* ==========================================================================
   Trust Matrix (Guarantees)
   ========================================================================== */
.trust-section {
    padding: 6rem 0;
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-pill-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(249, 115, 22, 0.08);
    color: var(--secondary);
    font-size: 0.86rem;
    font-weight: 600;
    padding: 0.45rem 1.15rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.pill-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 2rem 1.75rem;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: var(--border-focus);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-icon-box {
    width: 44px;
    height: 44px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.trust-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.55;
}

/* Attractions Showcase Box */
.attractions-box {
    margin-top: 3.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 3rem 2.25rem;
    box-shadow: var(--shadow-sm);
}

.attractions-box-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
}

.attractions-box-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.attractions-box-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.attractions-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.attraction-item-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.15rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.attraction-item-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.attraction-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: var(--transition);
}

.attraction-item-card:hover .attraction-icon {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.attraction-item-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.attraction-item-card span {
    display: block;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.attractions-box-footer {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.attractions-footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--secondary);
}

.attractions-footer-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Safety Callout Banner */
.safety-banner-box {
    margin-top: 2.5rem;
    background: var(--secondary);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .safety-banner-box {
        flex-direction: row;
        align-items: center;
    }
}

.safety-banner-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--primary);
}

.safety-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.safety-banner-content h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.safety-banner-content p {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   Camps Offers Section (Clean Sharp Tickets)
   ========================================================================== */
.offers-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
}

.camps-group {
    margin-bottom: 4.5rem;
}

.group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.group-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.85rem;
}

.group-summer {
    background: #ffedd5;
    color: #c2410c;
}

.group-winter {
    background: #e0f2fe;
    color: #0369a1;
}

.group-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
}

/* Camp Entry Card */
.camp-entry {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 2.25rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .camp-entry {
        padding: 3rem;
    }
}

.camp-entry:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-md);
}

.camp-entry-winter {
    border-left: 4px solid var(--accent-blue);
}

.camp-entry-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

@media (min-width: 860px) {
    .camp-entry-header {
        flex-direction: row;
        align-items: center;
    }
}

.entry-type {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.type-winter {
    color: var(--accent-blue);
}

.camp-headline h3 {
    font-size: 1.85rem;
    margin-bottom: 0;
}

/* Price Card */
.camp-pricing-card {
    background: var(--secondary);
    color: #ffffff;
    padding: 1.25rem 1.75rem;
    min-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 860px) {
    .camp-pricing-card {
        text-align: right;
    }
}

.price-figure {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: #fdba74;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-note {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 0.6rem;
}

.price-note span {
    color: #cbd5e1;
}

.deposit-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.65rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Photos Duo */
.camp-photos-duo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 650px) {
    .camp-photos-duo {
        grid-template-columns: 1fr 1fr;
    }
}

.photo-frame {
    height: 240px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid var(--border-light);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-frame:hover img {
    transform: scale(1.03);
}

/* Specs Strip */
.camp-specs-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .camp-specs-strip {
        grid-template-columns: 1fr 1fr 1.5fr;
    }
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.spec-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Description */
.camp-description {
    background: var(--primary-soft);
    border-left: 4px solid var(--primary);
    padding: 1.35rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.camp-description p:last-child {
    margin-bottom: 0;
}

/* 2 Columns Grid */
.camp-columns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2.25rem;
}

@media (min-width: 820px) {
    .camp-columns-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.camp-col-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
}

.camp-col-box h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.camp-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: var(--text-main);
}

.camp-bullet-list li {
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.45;
}

.camp-bullet-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.checkmarks li::before {
    content: '✓';
    color: #16a34a;
    font-weight: bold;
}

.camp-entry-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   Facilities Grid
   ========================================================================== */
.facilities-section {
    padding: 6rem 0;
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.facility-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.facility-image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.facility-content {
    padding: 1.5rem;
}

.facility-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.facility-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Schedule Table
   ========================================================================== */
.schedule-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
}

.schedule-table-wrap {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-card);
    transition: var(--transition);
}

@media (min-width: 650px) {
    .schedule-row {
        grid-template-columns: 160px 1fr;
        align-items: center;
        gap: 1.5rem;
    }
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row:hover {
    background: var(--bg-subtle);
}

.time-col {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

@media (min-width: 650px) {
    .time-col {
        margin-bottom: 0;
    }
}

.desc-col h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.desc-col p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
    padding: 6.5rem 0;
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-sm);
}

.faq-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(-135deg);
    border-color: var(--primary);
}

.faq-body {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-body {
    display: block;
}

/* ==========================================================================
   Documents Download
   ========================================================================== */
.docs-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.doc-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: var(--transition);
}

.doc-item:hover {
    border-color: var(--border-focus);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.doc-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 0.4rem 0.6rem;
    flex-shrink: 0;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.doc-details h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.doc-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
}

.doc-link {
    color: var(--primary-hover);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.doc-link:hover {
    text-decoration: underline;
}

.notice-bar {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent-blue);
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Contact Section (Modern Split)
   ========================================================================== */
.contact-section {
    padding: 6.5rem 0;
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.15fr;
    }
}

.lead-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-point {
    display: flex;
    flex-direction: column;
}

.point-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.point-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-hover);
    text-decoration: none;
}

.point-value:hover {
    text-decoration: underline;
}

.point-text {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Form Panel */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
}

.form-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.form-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.clean-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .field-row {
        grid-template-columns: 1fr 1fr;
    }
}

.field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
}

.field input,
.field textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-page);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--secondary);
    color: #94a3b8;
    padding: 5rem 0 2.5rem 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 600px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-columns {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    }
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-nav-col h5,
.footer-partner-col h5 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-nav-col a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-nav-col a:hover {
    color: #ffffff;
}

.partner-badge-dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.partner-badge-dark img {
    height: 46px;
    width: auto;
    display: block;
}

.partner-sub {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #94a3b8;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: #64748b;
}

@media (min-width: 768px) {
    .footer-bottom-bar {
        flex-direction: row;
    }
}

.footer-bottom-bar p {
    margin-bottom: 0;
}

.footer-credits {
    color: #475569;
    font-size: 0.74rem;
    letter-spacing: 0.01em;
}

.footer-credits a {
    color: #64748b;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
}

.footer-credits a:hover {
    color: #94a3b8;
    text-decoration: underline;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.info-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 19, 43, 0.8);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.info-modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 680px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.info-modal-header {
    background: var(--secondary);
    color: #ffffff;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-modal-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.close-info-modal {
    font-size: 1.8rem;
    line-height: 1;
    color: #cbd5e1;
    cursor: pointer;
}

.close-info-modal:hover {
    color: #ffffff;
}

.info-modal-body {
    padding: 2rem;
    font-size: 0.92rem;
    color: var(--text-main);
}

.modal-scrollable {
    max-height: 70vh;
    overflow-y: auto;
}

.info-modal-body h4 {
    font-size: 1.05rem;
    margin-top: 1.25rem;
    margin-bottom: 0.4rem;
    color: var(--secondary);
}

.info-modal-body h4:first-child {
    margin-top: 0;
}

.zapisy-alert-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--primary-soft);
    border: 1px solid rgba(249, 115, 22, 0.25);
    padding: 1.25rem 1.5rem;
}

.zapisy-alert-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zapisy-details-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-subtle);
    padding: 1.25rem;
    border: 1px solid var(--border-light);
}

.zapisy-detail-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.zapisy-detail-bullet {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* ==========================================================================
   Standard Pages & WooCommerce Integration Styles
   ========================================================================== */
.page-header-banner {
    padding: 9rem 0 3.5rem 0;
    background: var(--secondary);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.page-header-banner h1 {
    color: #ffffff;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.page-breadcrumbs {
    font-size: 0.85rem;
    color: #94a3b8;
}

.page-breadcrumbs a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.page-breadcrumbs a:hover {
    color: var(--primary);
}

.page-content-wrapper,
.woocommerce-page-container {
    padding: 4.5rem 0 6rem 0;
    background: var(--bg-page);
    min-height: 50vh;
}

.standard-page-content {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    line-height: 1.7;
}

.standard-page-content h2,
.standard-page-content h3,
.standard-page-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.standard-page-content ul,
.standard-page-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* WooCommerce Overrides & Straight Angles */
.woocommerce .woocommerce-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    transition: var(--transition);
    text-align: center;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--secondary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.woocommerce ul.products li.product .price {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: var(--primary) !important;
    color: #ffffff !important;
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 0.85rem 1.75rem !important;
    border: 1px solid transparent !important;
    transition: var(--transition);
    cursor: pointer;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: var(--primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.25);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top: 3px solid var(--primary) !important;
    background: var(--bg-subtle) !important;
    color: var(--secondary) !important;
    font-size: 0.95rem;
    border-radius: 0 !important;
}

.woocommerce table.shop_table {
    border: 1px solid var(--border-light) !important;
    border-collapse: collapse;
}

.woocommerce table.shop_table th {
    background: var(--bg-subtle);
    color: var(--secondary);
    font-family: var(--font-heading);
    padding: 1rem;
}

.woocommerce table.shop_table td {
    border-top: 1px solid var(--border-light) !important;
    padding: 1rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border: 1px solid var(--border-light) !important;
    padding: 0.75rem 1rem !important;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: #ffffff;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--primary) !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

/* 404 Page */
.error-404-wrapper {
    padding: 10rem 0 6rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-box {
    max-width: 580px;
    padding: 3rem 2rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.error-code {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */
.dap-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: rgba(11, 19, 43, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    padding: 1.15rem 1.5rem;
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.dap-cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.dap-cookie-container {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dap-cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
}

.dap-cookie-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.dap-cookie-text p {
    margin: 0;
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.dap-cookie-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.dap-cookie-text a:hover {
    color: #fdba74;
}

.btn-cookie-accept {
    background: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    padding: 0.75rem 1.6rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

@media (max-width: 640px) {
    .dap-cookie-banner {
        padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    }
    .dap-cookie-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }
    .dap-cookie-actions {
        width: 100%;
    }
    .btn-cookie-accept {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }
}

/* ==========================================================================
   Back to Top Button (Sharp Straight Angles)
   ========================================================================== */
.dap-back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    width: 46px;
    height: 46px;
    background: var(--secondary);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dap-back-to-top svg {
    stroke: #ffffff;
    transition: transform 0.2s ease;
}

.dap-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dap-back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
}

.dap-back-to-top:hover svg {
    transform: translateY(-2px);
}

.dap-back-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .dap-back-to-top {
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        right: 18px;
        width: 42px;
        height: 42px;
    }
}


