:root {
    --primary: #00B5B8;
    --text: #1f2937;
    --bg: #ffffff;
    --muted: #6b7280;
    --light: #f3f4f6;
}

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

html,
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
}

header.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

header.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    padding: 3rem;
    border-radius: 16px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: white;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
}

.scroll-down span {
    display: block;
    width: 30px;
    height: 30px;
    border-left: 4px solid white;
    border-bottom: 4px solid white;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(-50%) rotate(-45deg);
    }

    40% {
        transform: translateY(-70%) rotate(-45deg);
    }

    60% {
        transform: translateY(-60%) rotate(-45deg);
    }
}

section {
    padding: 5rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary);
}

p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.slideshow-container {
    margin: 0 auto;
    max-width: 1000px;
    height: 50vh;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

li::before {
    content: '🏖️';
    position: absolute;
    left: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

th,
td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.kontakt {
    text-align: center;
}

.kontakt button {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.5rem;
    transition: background 0.3s;
}

.kontakt button:hover {
    background: #F7931E;
}

footer {
    background: var(--light);
    text-align: center;
    padding: 3rem 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.logo-presentation {
    text-align: center;
    padding: 0rem 1rem 1rem;
}

.brand-logo {
    height: 100px;
    max-width: 220px;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}


@media (max-width: 820px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .slideshow-container {
        height: 40vh;
        min-height: 200px;
        margin: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 35vh;
        min-height: 180px;
        margin: 3rem 1.5rem;
    }
}