/* =========================
   Basis / Reset
   ========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #e5e7eb;

    background-image: url('../img/theke.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/* =========================
   Navigation
   ========================= */
nav {
    background: #11100e;
    backdrop-filter: blur(4px);
    color: #e8e6e3;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid #3a352c;
}

nav a {
    color: #cfc6b8;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
}

nav a:hover {
    color: #e3b873; /* Messing */
}

/* =========================
   Seitencontainer
   ========================= */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 32px;
    background: #23211d;
    border: 1px solid #3a352c;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 20px 40px rgba(0,0,0,0.6);
}

/* =========================
   Überschriften
   ========================= */
h1, h2, h3 {
    font-family: "Garamond", "Georgia", serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #f0ede7;
}

h1 {
    border-bottom: 1px solid #3a352c;
    padding-bottom: 10px;
}

/* =========================
   Links
   ========================= */
a {
    color: #d4a373;
}

a:hover {
    color: #e9c28f;
    text-decoration: underline;
}

/* =========================
   Buttons
   ========================= */
button {
    background: #3a352c;
    color: #e8e6e3;
    border: 1px solid #5c5446;
    padding: 8px 16px;
    font-family: inherit;
    letter-spacing: 0.05em;
    cursor: pointer;
}

button:hover {
    background: #4a4337;
    border-color: #e3b873;
}

/* =========================
   Inputs
   ========================= */
input, select {
    background: #1b1a17;
    color: #e8e6e3;
    border: 1px solid #5c5446;
    padding: 6px 8px;
    font-family: inherit;
}

input:focus, select:focus {
    outline: none;
    border-color: #e3b873;
}

/* =========================
   Tabellen
   ========================= */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    text-align: left;
    background: #2a261f;
    color: #e3b873;
    letter-spacing: 0.05em;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #3a352c;
}

tr:hover td {
    background: rgba(255,255,255,0.03);
}

/* =========================
   Modals (z.B. Kalender)
   ========================= */
#availabilityModal {
    background: #23211d;
    color: #e8e6e3;
    border: 1px solid #5c5446;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

#overlay {
    background: rgba(0,0,0,0.7);
}

/* =========================
   Kleine Details
   ========================= */
.success {
    margin-top: 20px;
    padding: 12px;
    background: #2d2a23;
    border-left: 4px solid #e3b873;
}

.nav-logo {
    height: 40px;       /* gewünschte Höhe */
    width: auto;        /* proportional skalieren */
    margin-right: 12px; /* Abstand zu Links */
    vertical-align: middle;
}

