@charset "utf-8";
/* CSS Document */

/* ============================
   ROOT VARIABLEN
   ============================ */
:root {
    --primary-color: #3366ff;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --background-color: #f8f8f8;
    --accent-color: #c00000;
    --border-radius: 8px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --max-width: 1200px;
    --spacing-unit: 1rem;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

/* ============================
   FONTS
   ============================ */
@font-face {
    font-family: "Inter";
    src: url("/fonts/web/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/fonts/web/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* ============================
   HEADER & NAVIGATION (NEU)
   ============================ */

header#nt-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--box-shadow);
}

.nt-header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nt-logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
}

/* Desktop-Navigation */
.nt-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nt-menu li a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
}

.nt-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Toggle Button */
.nt-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 2rem;
    cursor: pointer;
}
/* ============================
   KONTAKTBOX
   ============================ */

.kontaktbox {
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0 12px 0;
    text-align: right;
}

/* Breadcrumb + Kontaktbox im Grid */
.bc-kontakt {
    align-items: start;
}

/* Kontaktbox rechtsbündig */
.bc-kontakt .kontaktbox {
    text-align: right;
}

/* Mobile: optional links statt rechts */
@media (max-width: 768px) {
    .bc-kontakt .kontaktbox {
        text-align: left; /* oder right, wenn du mobil auch rechts willst */
    }
}

/* ============================
   MOBILE
   ============================ */
@media (max-width: 768px) {

    .nt-menu-toggle {
        display: block;
    }

    .nt-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 1rem;
        box-shadow: var(--box-shadow);
        border-radius: 0;
    }

    .nt-menu.menu-open {
        display: flex;
    }

    .nt-menu li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* ============================
   DESKTOP
   ============================ */
@media (min-width: 769px) {
    .nt-menu-toggle {
        display: none;
    }
}



/* ============================
   HERO
   ============================ */
.hero { position: relative; margin-bottom: 2rem; }
.hero-image { width: 100%; height: auto; display: block; }
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--secondary-color);
    padding: 2rem 1rem;
}
.hero-title { font-size: 2.5rem; margin-bottom: 0.5rem; color:#ffffff;font-variant: small-caps; }
.hero-subtitle { font-size: 1.2rem; }

/* ============================
   BREADCRUMBS
   ============================ */
.breadcrumbs { padding: 0.5rem 0; font-size: 0.9rem; color: #666; }
.breadcrumbs ol { display: flex; list-style: none; gap: 0.5rem; }
.breadcrumbs li:not(:last-child)::after { content: ">"; margin-left: 0.5rem; }

/* ============================
   MAIN CONTENT
   ============================ */
main { padding: 2rem 0; }
section { margin-bottom: 2rem; }
h1, h2, h3 { margin-bottom: 1rem; line-height: 1.2; }
h1 { font-size: 2rem; color: var(--primary-color); }
h2 { font-size: 1.5rem; border-bottom: 2px solid var(--primary-color); padding-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* ============================
   GRID
   ============================ */
.grid { display: grid; gap: var(--spacing-unit); }
.grid-1 { grid-template-columns: repeat(1, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
     .weg {display: none;}
}

/* ============================
   TECHNISCHE DATEN
   ============================ */
.tech-specs {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.5rem 1rem;
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.tech-specs dt { font-weight: bold; padding: 0.5rem 0; }
.tech-specs dd { text-align: right; padding: 0.5rem 0; }


@media (max-width: 480px) {
    .tech-specs { grid-template-columns: 1fr; }
    .tech-specs dt { border-bottom: 1px solid #ccc; }
    .tech-specs dd { text-align: left; padding-left: 1rem; }
}

/* ============================
   AUSSTATTUNGSTABELLE
   ============================ */
.features-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}
.features-table th, .features-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.features-table th {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* ============================
   GALERIE
   ============================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-top: 63.72%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    margin-top: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
}

/* ============================
   ASPECT RATIO
   ============================ */
.aspect-ratio {
    position: relative;
    width: 100%;
    padding-top: 63.72%;
    overflow: hidden;
}
.aspect-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ueber-bild {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
}

/* Responsive Kabinenpläne */
#plan picture,
#plan img {
    width: 100%;
    height: auto;
    display: block;
}


/* ============================
   BUTTONS
   ============================ */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: background-color 0.3s, transform 0.2s;
}
.cta-button:hover {
    background-color: #990000;
    transform: translateY(-2px);
}

.cta-button-container {
    text-align: center;
    margin: 2rem 0;
}

/* ============================
   STICKY BUTTON
   ============================ */
.sticky-request {
    position: fixed;
    bottom: 20px;

    right: 20px;
    z-index: 1000;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sticky-request:hover {
    background-color: #990000;
}

/* ============================
   FOOTER
   ============================ */
footer {
    background-color: #333;
    color: var(--secondary-color);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.5rem; }
.footer-column a { color: #ccc; text-decoration: none; }
.footer-column a:hover { color: var(--secondary-color); }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #555;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.social-links img {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* ============================
   UTILITY
   ============================ */
.text-center { text-align: center; }
.margin-top { margin-top: var(--spacing-unit); }
.margin-bottom { margin-bottom: var(--spacing-unit); }

/* ============================
   COOKIE BANNER
   ============================ */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

#cookie-consent-banner.hidden {
    display: none;
}

#cookie-consent-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

#cookie-consent-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

#cookie-consent-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

#cookie-accept-btn {
    background-color: var(--primary-color);
    color: #fff;
}

#cookie-accept-btn:hover {
    background-color: #1a4080;
}

#cookie-decline-btn {
    background-color: #666;
    color: #fff;
}

#cookie-decline-btn:hover {
    background-color: #333;
}

#cookie-settings-btn {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #ccc;
}

#cookie-settings-btn:hover {
    background-color: #444;
    color: #fff;
}

