/*
Theme Name: Lions Dunajská Lužná
Theme URI: https://lionsdunajskaluzna.sk/
Author: WebKon
Author URI: https://www.webkon.cz/
Description: Custom hybrid theme for a floorball club targeting kids and parents.
Version: 1.0.9
Text Domain: lions
*/

/* ==========================================================================
   1. FONTS & CSS VARIABLES & ANIMATIONS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Roboto:wght@400;700&display=swap');


:root {
    /* Colors per DESIGN_SPECS */
    --primary-color: #000F2C;           /* Tmavě modrá */
    --accent-color-1: #CF9F47;          /* Zlatá / Okrová */
    --accent-color-2: #b5883a;          /* Tmavší zlatá pro hover */

    --bg-color: #ffffff;                /* Bílé pozadí */
    --bg-color-alt: #f8f8f8;            /* Velmi světle šedá pro karty */
    --text-color: #333333;              /* Tmavý text */
    --heading-color-1: #000F2C;         /* Tmavě modré nadpisy */
    --heading-color-2: #CF9F47;         /* Zlaté nadpisy */

    /* Header & Footer */
    --header-bg: #000F2C;               /* Tmavě modrá */
    --footer-bg: #000F2C;               /* Tmavě modrá */
    --footer-slim-bg: #000512;          /* Ještě tmavější modrá */
    --header-text: #ffffff;             /* Bílý text v headeru */

    /* Layout */
    --header-height: 80px;
    --footer-height: 120px;
    --container-width: 1200px;

    /* Typografie */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* DARK MODE OVERRIDES (Tmavý režim - pokud bude implementován) */
body.dark-mode {
    --bg-color: #000b21;            /* Tmavé pozadí */
    --bg-color-alt: #00153d;        /* Lehce světlejší tmavá pro karty */
    --text-color: #e0e0e0;          /* Světlý text */
    --heading-color-1: #ffffff;     /* Bílé nadpisy */
}

/* ==========================================================================
   2. BASE & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color-1);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

a {
    color: var(--accent-color-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color-2);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.main-content {
    min-height: auto;
}

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--accent-color-1);
    color: #000F2C !important; /* Tmavý text na zlatém tlačítku pro kontrast */
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--accent-color-2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(207, 159, 71, 0.3);
}

.btn i {
    margin-right: 8px;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color-1);
    color: var(--accent-color-1) !important;
}

.btn-secondary:hover {
    background-color: var(--accent-color-1);
    color: #000F2C !important;
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background-color: var(--header-bg);
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.header-wrapper {
    width: 100%;
    padding: 30px 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo {
    max-width: 80px;
    height: auto;
    display: block;
}

.site-branding .logo-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--header-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-navigation {
    flex: 1;
    text-align: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

.main-navigation a {
    color: var(--header-text);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color-1);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--accent-color-1);
}

/* ── Dropdown submenus ── */
.main-navigation ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.submenu-toggle {
    background: none;
    border: none;
    color: var(--header-text);
    cursor: pointer;
    font-size: 10px;
    padding: 0 5px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform .25s ease, color .2s ease;
}
.submenu-toggle.open {
    transform: rotate(180deg);
    color: var(--accent-color-1);
}
.menu-item-has-children:hover > .submenu-toggle {
    color: var(--accent-color-1);
}

.main-navigation .sub-menu {
    list-style: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--header-bg, #000F2C);
    border-top: 2px solid var(--accent-color-1);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
    flex-direction: column !important;
    gap: 0 !important;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 1000;
}

.main-navigation ul > li:hover > .sub-menu,
.main-navigation ul > li.submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,.07);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.main-navigation .sub-menu a::after {
    display: none;
}
.main-navigation .sub-menu li:last-child > a {
    border-bottom: none;
}

.header-contacts {
    flex-shrink: 0;
}

.contacts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--header-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color-1);
}

.contact-link i {
    color: var(--accent-color-1);
    width: 18px;
    text-align: center;
}

.contact-item-wrapper {
    position: relative;
}

.contact-link {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

.contact-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    border: 1px solid var(--accent-color-1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 8px;
    z-index: 10000;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}

.contact-tooltip.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}

.tooltip-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--header-text);
    background: none;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.tooltip-btn:hover {
    background-color: rgba(207, 159, 71, 0.2);
    color: var(--accent-color-1);
    padding-left: 20px;
}

.tooltip-btn i {
    width: 16px;
    text-align: center;
    color: var(--accent-color-1);
}

.strip-item-wrapper {
    position: relative;
}

.strip-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.strip-link:hover {
    opacity: 0.8;
}

.mobile-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
}


/* Mobile Contact Strip */
.mobile-contact-strip {
    display: none;
    background-color: var(--header-bg);
    padding: 10px 20px;
    border-bottom: 1px solid rgba(207, 159, 71, 0.2);
}

.strip-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.strip-link {
    color: var(--header-text);
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.strip-link:hover {
    color: var(--accent-color-1);
}

.strip-link i {
    color: var(--accent-color-1);
    width: 16px;
    text-align: center;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-toggle .icon-bar {
    width: 25px;
    height: 3px;
    background-color: var(--header-text);
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.mobile-nav-toggle.active .icon-bar:nth-child(2) {
    transform: rotate(45deg) translateY(11px);
}

.mobile-nav-toggle.active .icon-bar:nth-child(3) {
    opacity: 0;
    transform: rotate(0deg);
}

.mobile-nav-toggle.active .icon-bar:nth-child(4) {
    transform: rotate(-45deg) translateY(-11px);
}

/* ═══════════ 1100px: contacts move to top strip ═══════════ */
@media (max-width: 1100px) {
    .mobile-contact-strip {
        display: block;
    }
    .header-contacts {
        display: none;
    }
    .header-wrapper {
        padding: 20px 40px;
    }
}

/* ═══════════ 900px: mobile nav ═══════════ */
@media (max-width: 900px) {
    .header-wrapper {
        padding: 15px 20px;
        gap: 15px;
        position: relative;
    }

    .site-branding {
        flex: 0 0 auto;
    }

    .mobile-nav-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--header-bg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        z-index: 999;
        border-bottom: 1px solid rgba(207, 159, 71, 0.2);
    }

    .main-navigation.mobile-active {
        max-height: 800px;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 20px;
        justify-content: flex-start;
        margin: 0;
    }

    /* Top-level li: flex row so link + toggle share the same line */
    .main-navigation ul > li {
        border-bottom: 1px solid rgba(255,255,255,.1);
        flex-wrap: wrap;
    }

    .main-navigation ul > li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        flex: 1;
        padding: 12px 0;
        border-bottom: none;
        color: var(--header-text);
        font-weight: 700;
        font-family: var(--font-heading);
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .main-navigation a::after {
        display: none;
    }

    .main-navigation a:hover {
        color: var(--accent-color-1);
    }

    /* Toggle: absolutely placed on the right so it doesn't push the link text */
    .submenu-toggle {
        position: absolute;
        right: 0;
        top: 0;
        height: 44px;
        display: flex;
        align-items: center;
        padding: 0 10px;
        font-size: 12px;
    }

    /* Sub-menu wraps below the row, full width */
    .main-navigation .sub-menu {
        position: static;
        flex-basis: 100%;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: rgba(255,255,255,.05);
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height .3s ease;
    }

    .main-navigation .sub-menu.submenu-open {
        max-height: 600px;
        padding: 4px 0;
    }

    .main-navigation .sub-menu li {
        border-bottom: 1px solid rgba(255,255,255,.07);
        flex-wrap: nowrap;
    }

    .main-navigation .sub-menu li:last-child {
        border-bottom: none;
    }

    .main-navigation .sub-menu a {
        padding: 10px 0 10px 20px;
        font-size: 13px;
        white-space: normal;
    }
}


/* Theme Toggle (WebKon Port) */
.theme-toggle-container {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.theme-toggle-wrapper {
    width: 50px;
    height: 26px;
    background: #1a1a1a;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .theme-toggle-wrapper {
    background: #4DA1FF;
}

.toggle-icon-wrapper {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--header-bg);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.light-mode .toggle-icon-wrapper {
    transform: translateX(24px);
    background: white;
}

.sun-icon { display: none; width: 12px; height: 12px; }
.moon-icon { display: block; width: 12px; height: 12px; }

body.light-mode .sun-icon { display: block; }
body.light-mode .moon-icon { display: none; }


/* ==========================================================================
   5. FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--footer-bg);
    color: rgba(255, 255, 255, 0.7);
}

.pre-footer {
    padding: 60px 0;
}

.pre-footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget h3 {
    color: var(--accent-color-1);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget i {
    color: var(--accent-color-1);
    width: 20px;
    text-align: center;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget a:hover {
    color: var(--accent-color-1);
}

.slim-footer {
    background-color: var(--footer-slim-bg);
    padding: 20px 0;
    font-size: 0.9rem;
}

.slim-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.slim-footer a {
    color: var(--accent-color-1);
}

.slim-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-kontakt-btn {
    margin-left: 1rem;
}

/* Kontakt modal */
.kontakt-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.kontakt-modal.is-open {
    display: flex;
}
.kontakt-modal__box {
    position: relative;
    background: var(--bg-color-card, #1A1A1A);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem;
    max-width: 480px;
    width: 90%;
    color: var(--text-color);
}
.kontakt-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.kontakt-modal__close:hover {
    color: #fff;
}
.kontakt-modal__title {
    font-family: var(--font-heading);
    color: var(--accent-color-1);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.kontakt-modal__dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 1.2rem;
}
.kontakt-modal__dl dt {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.kontakt-modal__dl dd {
    margin: 0;
    color: #fff;
    line-height: 1.5;
}

/* ==========================================================================
   6. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .pre-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-widget li {
        justify-content: center;
    }
    .slim-footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   PAGE DOMOV (HOMEPAGE)
   ========================================================================== */

/* Hero Section */
.hero-section {
    height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('assets/desktop-hero.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center calc(50% + 60px) !important; /* nudge image down on desktop */
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 15, 44, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 100px; /* slight downward offset on desktop */
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    font-family: var(--font-heading);
    margin: 0;
    color: var(--header-text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0;
    color: var(--accent-color-1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 0.95rem;
    background-color: var(--accent-color-1);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    background-color: var(--accent-color-2);
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scroll-pulse 2s infinite;
    transition: filter 0.25s ease;
}

.scroll-indicator.clicked {
    animation: none;
}

.scroll-indicator:not(.clicked):hover {
    filter: brightness(1.5) saturate(1.3);
}

.scroll-dot {
    width: 30px;
    height: 30px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 3px solid var(--accent-color-1);
    border-bottom: 3px solid var(--accent-color-1);
    transform: rotate(45deg);
    left: 10px;
    top: 3px;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 3px solid var(--accent-color-1);
    border-bottom: 3px solid var(--accent-color-1);
    transform: rotate(45deg);
    left: 10px;
    top: 13px;
    opacity: 0.6;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
.dalsi-zapas-section {
    min-height: 480px;
    padding: 60px 0;
    background-color: var(--footer-bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.dalsi-zapas-section .zapasy-content {
    margin-top: 0;
}

.dalsi-zapas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/dashes_leftright.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.dalsi-zapas-section > .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.aktuality-section,
.fotogalerie-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.preco-prave-my-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    font-family: var(--font-heading);
    text-align: center;
    color: var(--heading-color-1);
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
    border-radius: 2px;
}

/* Prečo práve my Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(207, 159, 71, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color-1);
    box-shadow: 0 10px 30px rgba(207, 159, 71, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color-1, #CF9F47);
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--heading-color-1);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Content Sections */
.zapasy-content,
.aktuality-content,
.fotogalerie-content {
    margin-top: 40px;
}

/* ==========================================================================
   PAGE HEADER STRIP
   ========================================================================== */

.page-header-strip {
    background-color: var(--accent-color-1);
    padding: 60px 0;
    color: #ffffff;
    text-align: center;
}

.page-header-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-header-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 400;
}

/* ==========================================================================
   PAGE: LETNÉ KEMPY
   ========================================================================== */

/* ── Shared section title ── */
.kemp-section-title {
    font-size: 1.8rem;
    color: var(--heading-color-1);
    margin-bottom: 32px;
}
.kemp-section-title--center {
    text-align: center;
}

/* ── Info Cards ── */
.kemp-info-section {
    padding: 60px 0 40px;
    background: var(--bg-color);
}
.kemp-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.kemp-info-card {
    background: rgba(207, 159, 71, 0.13);
    border: 1px solid rgba(207, 159, 71, 0.25);
    border-radius: 5px;
    padding: 28px 22px;
    text-align: center;
}
.kemp-card-icon {
    font-size: 2rem;
    color: var(--accent-color-2);
    margin-bottom: 12px;
}
.kemp-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--heading-color-1);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.kemp-card-content {
    font-size: 0.95rem;
    color: #222;
    line-height: 1.6;
}

/* ── O kempe ── */
.kemp-about-section {
    padding: 20px 0 60px;
    background: var(--bg-color);
}
.kemp-about-box {
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.22), rgba(135, 206, 235, 0.32));
    border: 1px solid rgba(135, 206, 235, 0.4);
    border-radius: 5px;
    padding: 36px 40px;
}
.kemp-about-box h2 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--heading-color-1);
}
.kemp-about-box p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 14px;
}
.kemp-about-box p:last-child {
    margin-bottom: 0;
}

/* ── Denný Program ── */
.kemp-program-section {
    padding: 60px 0;
    background: var(--bg-color-alt);
}
.kemp-program-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 780px;
    margin: 0 auto;
}
.kemp-program-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-color);
    border-radius: 5px;
    padding: 18px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.kemp-program-time {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color-1);
    white-space: nowrap;
    min-width: 110px;
    padding-top: 2px;
}
.kemp-program-name {
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--heading-color-1);
    margin-bottom: 4px;
}
.kemp-program-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ── Čo je v cene / Čo si priniesť ── */
.kemp-lists-section {
    padding: 60px 0;
    background: var(--bg-color);
}
.kemp-lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.kemp-list-card {
    border-radius: 5px;
    padding: 32px 36px;
}
.kemp-list-card h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.kemp-list-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.kemp-list-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.kemp-list-card--included {
    background: rgba(72, 199, 116, 0.12);
    border: 1px solid rgba(72, 199, 116, 0.3);
    color: #1a3a24;
}
.kemp-list-card--included h3 { color: #1e6b36; }
.kemp-list-card--included li i { color: #2e9e50; font-size: 0.75rem; }

.kemp-list-card--bring {
    background: rgba(230, 100, 60, 0.1);
    border: 1px solid rgba(230, 100, 60, 0.28);
    color: #3a1a10;
}
.kemp-list-card--bring h3 { color: #b84a1e; }
.kemp-list-card--bring li i { color: #c85a28; font-size: 0.5rem; vertical-align: middle; }

/* ── Form section ── */
.kemp-form-section {
    background: var(--bg-color);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .kemp-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .kemp-info-cards {
        grid-template-columns: 1fr;
    }
    .kemp-lists-grid {
        grid-template-columns: 1fr;
    }
    .kemp-about-box {
        padding: 24px 20px;
    }
    .kemp-program-item {
        flex-direction: column;
        gap: 6px;
    }
    .kemp-program-time {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(90vh - 140px - 50px);
        margin-top: 0;
        background-image: url('assets/mobile-hero.webp');
        background-attachment: scroll !important;
        background-position: center 30% !important;
        background-size: cover !important;
    }

    .hero-content {
        margin-top: 150px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .dalsi-zapas-section,
    .preco-prave-my-section,
    .aktuality-section,
    .fotogalerie-section {
        padding: 60px 0;
    }

    .features-grid {
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .hero-overlay {
    background: rgba(0, 15, 44, 0.4);
}
}

/* ==========================================================================
   PAGE O KLUBE (ABOUT CLUB)
   ========================================================================== */

/* Club Info Section */
.club-info-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.club-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/background_geometric_bottom.svg');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.club-info-section > .container {
    position: relative;
    z-index: 1;
}

.info-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color-1);
}

.info-title {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 25px;
}

.info-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-quote {
    font-style: italic;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-left: 3px solid var(--accent-color-1);
    padding-left: 15px;
    margin-top: 20px;
}

/* Activities Section */
.activities-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

/* Players Section */
.players-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.players-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/claw_gold.svg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.players-section > .container {
    position: relative;
    z-index: 1;
}

.section-heading {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 50px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.activity-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent-color-1);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.activity-title {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.activity-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .club-info-section::before {
        display: none;
    }

    .club-info-section {
        padding: 60px 0;
    }

    .info-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .activities-section {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activity-card {
        padding: 25px 20px;
    }

    .activity-title {
        font-size: 1.1rem;
    }
}