/* Agent should place all @font-face definitions here */
@font-face {
    font-family: 'U8';
    src: url('fonts/Webfonts/U8-Hairline-web.woff') format('woff');
    font-weight: 100; /* Hairline */
    font-style: normal;
}
@font-face {
    src: url('fonts/Webfonts/U8-HairlineItalic-web.woff') format('woff');
    font-weight: 100; /* Hairline Italic */
    font-style: italic;
}
@font-face {
    font-family: 'U8';
    src: url('fonts/Webfonts/U8-Thin-web.woff') format('woff');
    font-weight: 200; /* Thin */
    font-style: normal;
}
@font-face {
    src: url('fonts/Webfonts/U8-ThinItalic-web.woff') format('woff');
    font-weight: 200; /* Thin Italic */
    font-style: italic;
}
/* New specific font-family definitions */
@font-face {
    font-family: 'U8-Light';
    src: url('fonts/Webfonts/U8-Light-web.woff') format('woff');
    font-weight: normal; /* Light */
    font-style: normal;
}
@font-face {
    src: url('fonts/Webfonts/U8-LightItalic-web.woff') format('woff');
    font-weight: normal; /* Light Italic */
    font-style: italic;
}
@font-face {
    font-family: 'U8';
    src: url('fonts/Webfonts/U8-Regular-web.woff') format('woff');
    font-weight: normal; /* Regular */
    font-style: normal;
}
@font-face {
    src: url('fonts/Webfonts/U8-RegularItalic-web.woff') format('woff');
    font-weight: normal; /* Regular Italic */
    font-style: italic;
}
@font-face {
    font-family: 'U8-Medium';
    src: url('fonts/Webfonts/U8-Medium-web.woff') format('woff');
    font-weight: normal; /* Medium */
    font-style: normal;
}
@font-face {
    src: url('fonts/Webfonts/U8-MediumItalic-web.woff') format('woff');
    font-weight: normal; /* Medium Italic */
    font-style: italic;
}
@font-face {
    font-family: 'U8';
    src: url('fonts/Webfonts/U8-Bold-web.woff') format('woff');
    font-weight: bold; /* Bold */
    font-style: normal;
}
@font-face {
    src: url('fonts/Webfonts/U8-BoldItalic-web.woff') format('woff');
    font-weight: bold; /* Bold Italic */
    font-style: italic;
}
@font-face {
    font-family: 'U8-Black';
    src: url('fonts/Webfonts/U8-Black-web.woff') format('woff');
    font-weight: normal; /* Black */
    font-style: normal;
}
@font-face {
    src: url('fonts/Webfonts/U8-BlackItalic-web.woff') format('woff');
    font-weight: normal; /* Black Italic */
    font-style: italic;
}

/* --- GLOBALE STILE --- */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

body {
    margin: 0;
    font-family: 'U8-Light', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- HINTERGRUND & LAYOUT BASIS --- */
.background-image {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-image: url('../images/background.jpg'); /* Correct path needed */
    background-size: cover;
    background-position: right center;
    filter: brightness(0.5);
    z-index: -1;
}

.container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column; /* Stellt sicher, dass der Header oben ist */
    flex-grow: 1;
}

/* --- HEADER --- */
header {
    text-align: center;
    padding-top: 30px;
    position: relative; /* Add this for positioning the back link */
}
.logo { font-family: 'U8-Black', sans-serif; font-size: 2.5em; line-height: 1; margin: 0 0 -5px 0; }
.slogan { font-family: 'U8-Medium', sans-serif; font-size: 1.1em; color: #FFFFFF; margin-top: 10px; line-height: 1; }

.back-link {
    font-family: 'U8-Light', sans-serif;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
    text-decoration: none;
    transition: color 0.3s ease;
    position: absolute;
    top: 40px;
    left: 40px;
}

.back-link:hover {
    color: #FFFFFF;
}

/* --- INHALTSBLOCK --- */
.content-wrapper {
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 180px;
}

.info-box {
    background-color: rgba(245, 245, 245, 0.4);
    backdrop-filter: blur(8px);
    color: #1A1A1A;
    padding: 12px 20px;
    margin-bottom: 15px;
}
.info-box p { margin: 10px 0; line-height: 1.2; text-align: right; font-size: 0.9em; }

.zenchef-placeholder { text-align: right; margin-bottom: 15px; }

.btn-reservieren {
    background-color: rgba(220, 220, 220, 0.5);
    color: #1A1A1A;
    border: none;
    padding: 12px 20px;
    font-family: 'U8-Medium', sans-serif;
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-reservieren:hover { background-color: rgba(255, 255, 255, 1); }

/* --- FOOTER --- */
footer {
    padding: 20px;
    text-align: center;
    z-index: 1; /* Ensure it's above the background image */
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer nav ul li a {
    font-family: 'U8-Light', sans-serif;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav ul li a:hover {
    color: #FFFFFF;
}

main a, main a:visited {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

main a:hover {
    color: #FFFFFF !important;
}
