/* Základ stránky */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #ffffff;
    background-color: #000000;
}

/* Jedna stránka s pozadím */
.page {
    min-height: 100vh;
    width: 100%;
    background-color: #000000;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
    z-index: 1;
}

.page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 0;
    pointer-events: none;
}

/* Obsah */
.page-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 40px;
}

/* Horné menu */
.navbar {
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 1000;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* MENU – <a> AJ <button> */
.navbar a,
.navbar button {
    text-decoration: none;
    padding: 8px 22px;
    border-radius: 999px;
    background: #b28b2e;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
    appearance: none;
}

.navbar a:hover,
.navbar button:hover {
    background: #d4a63b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.navbar a.active,
.navbar button.active {
    background: #e0b94e;
}

.navbar a.nav-cta,
.navbar button.nav-cta {
    font-weight: 600;
}

/* Spodná lišta */
.site-footer {
    position: fixed;
    bottom: 8px;
    right: 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    z-index: 99999;
    pointer-events: auto;
    text-decoration: none;
}

.site-footer:hover {
    color: #c89b33;
}

/* Sekcie */
.section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    color: #ffffff;
}

.section h1,
.section h2,
.section h3 {
    margin-top: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.section h2 {
    font-size: 28px;
    margin-top: 40px;
}

.section p {
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 700px;
}

/* Wellness */
.wellness-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 60px auto;
    max-width: 1100px;
}

.wellness-text {
    flex: 1;
    max-width: 600px;
}

.wellness-img {
    width: 360px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.img-right { order: 2; }
.img-left  { order: 1; }

/* ============================= */
/* KONTAKT – ZLATO / BIELA LOGIKA */
/* ============================= */

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-left { flex: 1; max-width: 420px; }
.contact-right { flex: 1; max-width: 500px; }

.contact-info {
    margin-top: 24px;
}

.contact-line {
    margin-bottom: 14px;
    line-height: 1.6;
}

.contact-label {
    display: inline-block;
    min-width: 90px;
    color: #c89b33;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-value {
    color: #ffffff;
}

/* ============================= */
/* REZERVÁCIA – TLAČIDLÁ A LINKY */
/* ============================= */
/* V rezervácii používaš .btn a .link-btn (Dnes, Potvrdiť dátum/čas, zmeniť dátum/čas) */
.btn {
    padding: 10px 26px;
    border-radius: 999px;
    background: #b28b2e;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    appearance: none;
}

.btn:hover {
    background: #d4a63b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.link-btn {
    background: transparent;
    border: 0;
    padding: 6px 10px;
    color: #c89b33;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    opacity: 0.95;
}

.link-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Šípky v kalendári (sú to obyčajné buttony bez triedy) */
.calendar-header button {
    background: transparent;
    color: #c89b33;
    border: 1px solid rgba(200,155,51,0.55);
    border-radius: 12px;
    padding: 8px 12px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.1s ease;
}

.calendar-header button:hover {
    background: rgba(200,155,51,0.12);
    transform: translateY(-1px);
}

/* link-btn v hlavičke nesmie zdediť štýl šípok */
.calendar-header button.link-btn {
    border: 0;
    padding: 6px 10px;
    border-radius: 0;
    background: transparent;
    transform: none;
}

/* Responzívne */
@media (max-width: 900px) {
    .navbar {
        right: 12px;
        top: 12px;
    }

    .wellness-row {
        flex-direction: column;
        gap: 20px;
    }

    .wellness-img {
        width: 100%;
        max-width: 100%;
        order: initial !important;
    }
}

@media (max-width: 600px) {
    .navbar {
        left: 10px;
        right: 10px;
        justify-content: center;
    }
}