/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --bg: #0b1220;
    --text: #e6ecff;
    --muted: #a9b4d0;
    --card: #0f172a;
    --accent: #60a5fa;
    --ring: #8b5cf6
}

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    min-height: 100%
}

body {
    font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: #0b1220;
    color: var(--text)
}

a {
    color: var(--accent);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 24px;
    position: relative;
    z-index: 3
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(11, 18, 32, .95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    z-index: 20
}

.nav {
    display: flex;
    align-items: center;
    justify-content: spasce-between;
    gap: 24px;
    padding: 12px 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .3px;
    transition: opacity 0.2s;
}

.brand:hover {
    opacity: 0.8;
    text-decoration: none;
}

.brand-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-size: 16px;
    line-height: 1;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    margin-right: 12px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -10px);
}

/* Language Flags */
.lang {
    display: flex;
    gap: 8px
}

.flag {
    width: 28px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: .85;
    transition: all 0.2s;
}

.flag:hover {
    opacity: 1;
    border-color: rgba(96, 165, 250, .8);
}

.flag.active {
    box-shadow: 0 0 0 2px rgba(96, 165, 250, .35) inset;
    opacity: 1
}

/* ========================================
   CARDS
   ======================================== */
.card {
    background: linear-gradient(180deg, var(--card), #0c1428);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 32px
}

/* ========================================
   HERO SECTION (INDEX PAGE)
   ======================================== */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    filter: brightness(.65) saturate(1.05)
}

.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero .hero-content {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 60px 24px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 86px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ========================================
   PAGE HEADER (ABOUT, CONTACT, FAQ)
   ======================================== */
.page-header {
    text-align: center;
    padding: 80px 24px 40px;
}

.page-header h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin: 0 0 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   INTRO SECTION (INDEX)
   ======================================== */
.intro {
    margin-top: 28px
}

.intro .card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(12, 20, 40, 0.5));
    backdrop-filter: blur(10px);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
}

/* ========================================
   CTA SECTION (INDEX PAGE)
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1420 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 48px 40px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 16px 0 0;
    max-width: 600px;
}

.cta-button {
    background: linear-gradient(135deg, #FECC00 0%, #FDB813 100%);
    color: #1a1f2e;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    white-space: nowrap;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FDB813 0%, #F5A800 100%);
    text-decoration: none;
}

/* ========================================
   TEAM SECTION (ABOUT PAGE)
   ======================================== */
.team-section {
    margin-top: 64px;
}

.team-section h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    text-align: center;
    margin: 0 0 48px;
}

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

.team-card {
    background: linear-gradient(180deg, var(--card), #0c1428);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.team-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 3px solid rgba(96, 165, 250, .2);
}

.team-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}

.team-card .role {
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CONTACT FORM (CONTACT PAGE)
   ======================================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, .06);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    width: 100%;
    padding: 16px 32px;
    background: var(--accent);
    color: #0b1220;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #7cb5fb;
}

button:active {
    background: #4a8fd8;
}

/* ========================================
   FAQ PAGE
   ======================================== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 48px 0 32px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: var(--muted);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.tab:hover {
    border-color: var(--accent);
    color: var(--text);
}

.tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #0b1220;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto 48px;
}

.faq-item {
    background: linear-gradient(180deg, var(--card), #0c1428);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item:hover {
    border-color: rgba(96, 165, 250, .2);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    opacity: .9;
    padding: 48px 0 36px;
    color: var(--muted);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: 80px;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 960px) {
    .hero {
        min-height: 55vh
    }

    .hero h1 {
        font-size: clamp(25px, 9vw, 60px);
    }

    .hero p {
        font-size: clamp(16px, 4vw, 22px);
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 18, 32, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .nav-links.active {
        max-height: 320px;
    }

    .nav-links a {
        padding: 16px 24px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .04);
        font-size: 15px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .cta-section {
        flex-direction: column;
        padding: 36px 24px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        max-width: 100%;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery img {
        height: 240px;
    }

    .card {
        padding: 24px;
    }

    .tabs {
        gap: 6px;
    }

    .tab {
        padding: 8px 16px;
        font-size: 14px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 20px;
    }

    /* Flags inside mobile menu */
    .nav-links .lang {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        gap: 12px;
        border-top: 1px solid rgba(255, 255, 255, .04);
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: clamp(30px, 9.5vw, 52px);
        letter-spacing: 0.01em;
    }
}

/* ========================================
   BÓKUN BOOK NOW BUTTON
   ======================================== */
#bokun_dc699ad3_d0bb_4cfc_93a9_361a35d0d2de {
    display: inline-block;
    padding: 10px 20px;
    background: #408C3D;
    border-radius: 5px;
    box-shadow: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    width: auto;
    flex: none;
}

#bokun_dc699ad3_d0bb_4cfc_93a9_361a35d0d2de:hover {
    background: #357336;
}

#bokun_dc699ad3_d0bb_4cfc_93a9_361a35d0d2de:active {
    background: #285726;
}