* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Montserrat', sans-serif; 
    color: #333; 
    background-color: #f9f9f9;
    scroll-behavior: smooth; 
}

/* --- NAVIGAČNÍ LIŠTA --- */
.navbar {
    position: fixed; 
    top: 0; 
    width: 100%;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 20px 50px; 
    background-color: rgba(36, 28, 21, 0.85); 
    backdrop-filter: blur(15px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    z-index: 1000;
}

.logo h2 { 
    font-size: 24px; 
    color: #ffffff;
    letter-spacing: 1px;
}

.logo span { 
    font-size: 12px; 
    color: #d6912b; 
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links { 
    display: flex; 
    list-style: none; 
    align-items: center;
}

.nav-links li {
    padding: 0 15px; 
}

.nav-links a { 
    color: #ffffff; 
    text-decoration: none; 
    font-size: 15px; 
    font-weight: 700; 
    text-transform: uppercase;
    transition: 0.3s ease;
    padding-bottom: 5px; 
}

.nav-links a:hover, .nav-links a.active {
    color: #d6912b; 
    border-bottom: 2px solid #d6912b; 
}

.ig-link a {
    font-size: 20px; 
    border: none !important;
}

.flags { 
    display: flex;
    gap: 10px;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.3); 
    padding-left: 20px; 
}

.flag-btn {
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.flag-btn img {
    width: 20px; 
}

.flag-btn:hover {
    background: rgba(255, 255, 255, 0.3); 
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* --- ÚVODNÍ HERO SEKCE (HLAVNÍ STRÁNKA) --- */
.hero {
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4)), url('uvod-safari.jpg') center/cover no-repeat;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    color: #ffffff;
}

/* --- HERO SEKCE PRO VÝLETY (TRIPS) --- */
.hero-trips {
    height: 75vh; 
    min-height: 600px;
    background: linear-gradient(rgba(10,10,10,0.6), rgba(10,10,10,0.8)), url('tanji-4.jpg') center/cover no-repeat;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
}

.hero-text-container {
    margin-top: 50px;
}

/* Společný styl textu pro oba úvody */
.hero h1, .hero-trips h1 { 
    font-family: 'Caveat', cursive; 
    font-size: 80px; 
    margin-bottom: 10px; 
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7); 
}

.hero p, .hero-trips p { 
    font-size: 18px; 
    letter-spacing: 3px; 
    margin-bottom: 40px; 
    font-weight: 600; 
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* --- TLAČÍTKA --- */
.cta-btn {
    background-color: #d6912b; 
    color: #ffffff; 
    padding: 15px 40px; 
    text-decoration: none;
    font-weight: 700; 
    border-radius: 25px; 
    text-transform: uppercase;
    transition: 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #b57a24; 
    transform: scale(1.05); 
}

.outline-btn {
    background-color: transparent;
    color: #d6912b;
    border: 2px solid #d6912b;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

.outline-btn:hover {
    background-color: #d6912b;
    color: #fff;
}

/* --- SEKCÍM --- */
.content-section {
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.light-bg {
    background-color: #f9f9f9;
}

/* --- KARTY NÁHLEDŮ --- */
.trip-preview-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 700px;
    margin: 0 auto;
    border-top: 4px solid #d6912b;
}

.trip-preview-card p {
    color: #555;
    margin: 20px 0 30px 0;
    line-height: 1.6;
}

/* --- CENÍK --- */
.price-list-container {
    background: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.price-list {
    list-style: none;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10px;
    border-bottom: 1px solid #eee;
}

.hidden-price {
    display: none;
}

.price-name {
    font-size: 16px;
    font-weight: 600;
}

.price-amount {
    font-size: 18px;
    color: #d6912b;
    font-weight: 700;
}

/* --- INFO KARTA --- */
.info-card {
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.info-card h4 {
    color: #d6912b;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card p {
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* --- KONTAKTY --- */
.dark-bg {
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8)), url('lode-pozadi.jpg') center/cover no-repeat;
    color: #ffffff;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    border-bottom: 2px solid #d6912b;
    display: inline-block;
    padding-bottom: 5px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
}

.info-item i { color: #d6912b; font-size: 24px; }

.contact-form-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn {
    background-color: #d6912b;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.submit-btn:hover { background-color: #b57a24; }

/* --- STRÁNKA S VÝLETY TRIPS --- */
.trip-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.trip-item h3 { font-size: 28px; margin-bottom: 15px; }
.trip-item p { color: #555; line-height: 1.6; margin-bottom: 25px; }

.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px; 
}

.slider-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 40px; 
    background: #fff;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

/* ZDE JE OPRAVA PRO CELÉ FOTKY: object-fit z cover na contain */
.slider-track img {
    width: 100%;
    flex-shrink: 0;
    object-fit: contain;
    height: 600px;
    background-color: #ffffff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff; 
    color: #d6912b; 
    border: 2px solid #d6912b;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slider-arrow:hover { background: #d6912b; color: #ffffff; }
.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }

.slider-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2); 
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active { background: #d6912b; transform: scale(1.2); }

/* --- RESPONSIVE / MOBILNÍ DESIGN --- */
@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .hamburger { display: block; order: 3; }
    
    .flags { 
        order: 2; 
        border-left: none; 
        padding-left: 0; 
        margin-left: auto; 
        margin-right: 15px; 
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(36, 28, 21, 0.98);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; }
    .ig-link { margin-left: 0; }

    .hero h1, .hero-trips h1 { font-size: 42px; }
    .hero p, .hero-trips p { font-size: 13px; }
    .section-title { font-size: 28px; }

    .contact-wrapper { flex-direction: column; gap: 30px; }
    .slider-track img { height: 350px; }
    .slider-wrapper { padding: 0 10px; }
    .slider-arrow { width: 35px; height: 35px; font-size: 14px; }
}