/* ---------------------------------------------------------
   GLOBAL
--------------------------------------------------------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #eee;
    line-height: 1.6;
}

a {
    color: #d4a84e;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.main {
    padding: 20px;
}

/* ---------------------------------------------------------
   HEADER + NAVIGATION
--------------------------------------------------------- */

.site-header {
    background: #000;
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 22px;
    font-weight: bold;
    color: #d4a84e;
}

/* Desktop Navigation */
.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav a {
    color: #eee;
    font-size: 16px;
    padding: 8px 0;
}

.nav-cta {
    background: #d4a84e;
    color: #000 !important;
    padding: 8px 14px;
    border-radius: 4px;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #d4a84e;
}

/* ---------------------------------------------------------
   MOBILE NAVIGATION FIX
--------------------------------------------------------- */

@media (max-width: 768px) {

    .nav {
        display: none;
        flex-direction: column;
        background: #000;
        padding: 20px;
        margin-top: 15px;
        border-top: 1px solid #333;
        width: 100%;
    }

    .nav.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .lang-switch {
        display: none;
    }
}

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */

.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    background: url('/assets/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-kicker {
    font-size: 18px;
    color: #d4a84e;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.hero-sub {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 360px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 16px;
    }
}

/* ---------------------------------------------------------
   SECTIONS
--------------------------------------------------------- */

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 26px;
    margin-bottom: 10px;
    color: #d4a84e;
}

.section-sub {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

/* ---------------------------------------------------------
   FORMS
--------------------------------------------------------- */

.booking-form,
.admin-form {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #333;
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #222;
    color: #eee;
    font-size: 16px;
}

textarea {
    min-height: 120px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #d4a84e;
    color: #000;
    padding: 12px 18px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    background: #444;
    color: #eee;
    padding: 12px 18px;
    border-radius: 4px;
}

/* ---------------------------------------------------------
   ADMIN TABLES
--------------------------------------------------------- */

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    border-bottom: 1px solid #333;
    text-align: left;
}

.admin-table th {
    background: #222;
    color: #d4a84e;
}

@media (max-width: 600px) {
    .admin-table th,
    .admin-table td {
        padding: 10px 6px;
        font-size: 14px;
    }
}
.news-item {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #333;
    margin-bottom: 20px;
}

.btn-back {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 14px;
    background: #444;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}

.btn-back:hover {
    background: #666;
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

footer {
    background: #000;
    padding: 20px;
    text-align: center;
    color: #777;
    margin-top: 40px;
}

/* ---------------------------------------------------------
   BOTTOM NAVIGATION (MOBILE)
--------------------------------------------------------- */

.bottom-nav {
    display: none;
}

@media (max-width: 768px) {

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #000;
        border-top: 1px solid #333;
        z-index: 200;
    }

    .bottom-nav a {
        flex: 1;
        text-align: center;
        padding: 10px 0;
        color: #d4a84e;
        font-size: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .bottom-nav svg {
        width: 22px;
        height: 22px;
    }

    body {
        padding-bottom: 70px;
    }
}
