/* ============================================
   NADPLOTY.CZ - Condensed & Integrated Design
   ============================================ */

:root {
    /* Colors from logo */
    --sky-blue: #4A90A4;
    --deep-blue: #2C5F7A;
    --navy: #1E3A5F;
    --light-blue: #E8F4F8;
    --cloud-white: #F8FBFD;
    --rainbow-yellow: #FFD166;
    --rainbow-orange: #FF8A5B;
    --rainbow-green: #7BC96F;
    
    /* Functional */
    --text-primary: #2C3E50;
    --text-secondary: #5A6C7D;
    --text-light: #8595A8;
    --background: #FFFFFF;
    --border-light: #E1E8ED;
    
    /* Spacing - more compact */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-display: 'Comfortaa', cursive;
    --font-body: 'Karla', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(42, 90, 164, 0.08);
    --shadow-md: 0 4px 16px rgba(42, 90, 164, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Navigation with Logo ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.4rem var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-blue);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--deep-blue);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: var(--light-blue);
    color: var(--sky-blue);
}

/* ===== Hero - Side by Side Layout ===== */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('Hero_4.jpg');
    background-size: cover;
    background-position: center 30%;
    overflow: hidden;
    margin-top: 66px;
    padding: var(--spacing-lg) 0;
}

.hero-bg-img {
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 30, 55, 0.72) 0%,
        rgba(15, 30, 55, 0.45) 55%,
        rgba(15, 30, 55, 0.15) 100%
    );
    z-index: 1;
}

.clouds-bg {
    display: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}



.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #ffffff;
    margin-bottom: var(--spacing-md);
}

.hero-text p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--deep-blue);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    position: absolute;
    bottom: -50px;
    right: 10%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.paraglider-icon {
    font-size: 8rem;
    opacity: 0.15;
    filter: blur(2px);
}

/* Logo on right side */
.hero-logo-container {
    position: relative;
    max-width: 450px;
    width: 100%;
    animation: fadeInScale 1s ease-out;
    justify-self: end;
}

@media (max-width: 899px) {
    .hero-logo-container {
        justify-self: center;
        max-width: 350px;
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Static layer - fence and text, no animation */
.logo-static {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(74, 144, 164, 0.15));
}

/* Floating layer - paraglider with passengers */
.logo-floating {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: auto;
    animation: floatParaglider 6s ease-in-out infinite;
    filter: drop-shadow(0 12px 32px rgba(74, 144, 164, 0.25));
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Separate animation for paraglider only */
@keyframes floatParaglider {
    0%, 100% { 
        transform: translateY(0) rotate(-3deg); 
    }
    50% { 
        transform: translateY(-25px) rotate(3deg); 
    }
}

/* ===== Main Content ===== */
.main-content {
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: var(--font-display);
    color: var(--deep-blue);
    line-height: 1.3;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: var(--spacing-xs);
}

/* ===== Compact Sections ===== */
.section-compact {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border-light);
}

.section-compact:last-child {
    border-bottom: none;
}

.section-compact.combined {
    background: var(--cloud-white);
}

/* ===== Split Layout ===== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

@media (min-width: 768px) {
    .split-layout {
        grid-template-columns: 1.2fr 1fr;
    }
}

.split-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.split-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mini-feature {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mini-feature:hover {
    border-color: var(--sky-blue);
    box-shadow: var(--shadow-md);
}

.mini-feature strong {
    display: block;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.mini-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    text-align: justify;
}

/* ===== Two Column Grid ===== */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 900px) {
    .two-col-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.col-section h2 {
    margin-bottom: var(--spacing-md);
}

/* ===== Location List ===== */
.location-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.location-item {
    padding: var(--spacing-md);
    background: white;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.location-item:hover {
    border-color: var(--sky-blue);
    box-shadow: var(--shadow-md);
}

.location-main {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.location-info {
    flex: 1;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.location-header h3 {
    margin: 0;
    font-size: 1.15rem;
}

.altitude {
    background: var(--light-blue);
    color: var(--deep-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.location-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0 0 var(--spacing-sm) 0;
    text-align: justify;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--sky-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    background: rgba(74, 144, 164, 0.1);
    transition: all 0.3s ease;
}

.location-link:hover {
    background: var(--sky-blue);
    color: white;
    transform: translateX(3px);
}

.location-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.location-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.location-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Checklist ===== */
.checklist {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: var(--light-blue);
    border-color: var(--sky-blue);
}

.check-icon,
.mini-icon,
.cost-icon {
    font-size: 26px !important;
    flex-shrink: 0;
    line-height: 1;
    width: 32px;
    text-align: center;
    display: block;
}

.checklist-item strong {
    display: block;
    color: var(--deep-blue);
    font-size: 1rem;
}

.checklist-item span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== Gallery - Compact ===== */
.gallery-section h2 {
    text-align: left;
}

.compact-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (min-width: 640px) {
    .compact-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .compact-gallery {
        grid-template-columns: repeat(6, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--sky-blue) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item::after {
    content: '📸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.2);
}

/* ===== Costs Compact ===== */
.costs-compact {
    text-align: left;
}

.costs-header {
    margin-bottom: var(--spacing-lg);
}

.costs-note {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
}

.costs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 640px) {
    .costs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cost-card {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--deep-blue) 100%);
    color: white;
    padding: var(--spacing-md);
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.costs-description {
    max-width: 700px;
    margin: 0;
    color: var(--text-secondary);
}

/* ===== Costs List ===== */
.costs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--spacing-md);
}

.cost-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-light);
}

.cost-item:last-child {
    border-bottom: none;
}



.cost-item strong {
    display: block;
    color: var(--deep-blue);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.cost-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Footer Logo ===== */
.footer-logo-wrap {
    position: relative;
    width: 140px;
    padding-top: 8.5px;
    margin: 0 auto var(--spacing-md);
}

.footer-logo-static {
    width: 140px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    opacity: 0.85;
}

.footer-logo-floating {
    position: absolute;
    top: -8.5px;
    left: 0;
    width: 140px;
    height: auto;
    animation: floatParaglider 6s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
    opacity: 0.85;
}

/* ===== Footer - Compact ===== */
.footer {
    background: var(--deep-blue);
    color: white;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-content p {
    margin: 0.3rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .nav-links {
        gap: var(--spacing-xs);
    }
    
    .nav-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .section-compact {
        padding: var(--spacing-lg) 0;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-md) 0;
    }
    
    .hero-logo-container {
        max-width: 280px;
    }
    
    .logo-floating {
        top: -50px;
    }
    
    .location-main {
        flex-direction: column;
        align-items: stretch;
    }
    
    .location-thumbnail {
        width: 100%;
        height: 120px;
        order: -1;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus {
    outline: 3px solid var(--sky-blue);
    outline-offset: 2px;
}

/* ===== Print ===== */
@media print {
    .nav {
        position: static;
    }
    
    .section-compact {
        page-break-inside: avoid;
    }
}

/* ===== Safety Block ===== */
.safety-block {
    margin-top: var(--spacing-md);
    background: white;
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--sky-blue);
}

.safety-block h3 {
    font-size: 1.1rem;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-sm);
}

.safety-block > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.safety-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.safety-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.safety-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.safety-list strong {
    color: var(--deep-blue);
    display: inline;
}

/* ===== Safety Grid ===== */
.section-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

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

/* ===== Compact Checklist Grid ===== */
.checklist-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

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

.checklist-item-compact {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.checklist-item-compact:hover {
    border-color: var(--sky-blue);
    box-shadow: var(--shadow-md);
}

.checklist-item-compact strong {
    display: block;
    color: var(--deep-blue);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.checklist-item-compact span {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: justify;
    display: block;
}

/* ===== Location Grid (2 columns) ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

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



.hero-wa-text {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.12);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-whatsapp-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-top: var(--spacing-md);
    border-left: 3px solid rgba(255, 255, 255, 0.4);
    padding-left: var(--spacing-sm);
}

.hero-whatsapp-note {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ===== Checklist 3-item stretch ===== */






/* ===== Floating Actions (Logo + WhatsApp) ===== */
.floating-actions {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.floating-logo-wrap {
    position: relative;
    width: 120px;
    padding-top: 8.5px;
}

.floating-logo-static {
    width: 120px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.floating-logo-floating {
    position: absolute;
    top: -8.5px;
    left: 0;
    width: 120px;
    height: auto;
    animation: floatParaglider 6s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-fab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.whatsapp-fab:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .whatsapp-fab span {
        display: none;
    }

    .whatsapp-fab {
        padding: 0.9rem;
        border-radius: 50%;
    }
}

/* ===== Pilot Section ===== */
.pilot-section-layout {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.pilot-section-photo {
    width: 220px;
    height: 260px;
    object-fit: cover;
    object-position: 20% top;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
    .pilot-section-layout {
        flex-direction: column;
    }
    .pilot-section-photo {
        width: 100%;
        height: 220px;
    }
}

.pilot-info h3 {
    font-size: 1.1rem;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-xs);
}

.pilot-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--sky-blue);
    margin-bottom: var(--spacing-xs);
}

.pilot-location {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.pilot-stats-inline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.pilot-stats-inline strong {
    color: var(--deep-blue);
    font-weight: 600;
}

.pilot-badges {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pilot-badges li {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pilot-bio {
    margin-top: var(--spacing-lg);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}


