/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 1920px;
    max-width: 100%;
    height: 125px;
    z-index: 1000;
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        rgba(35, 35, 35, 0.05),
        rgba(217, 217, 217, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.nav-container {
    width: 100%;
    max-width: 1920px;
    height: 125px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.nav-left {
    padding-left: 40px;
    gap: 100px;
}

.nav-right {
    padding-right: 40px;
    gap: 100px;
}

.nav-menu li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu li a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 700;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    font-family: 'Lato', sans-serif;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 300;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.logo a:hover {
    opacity: 0.7;
}

/* Navigation Dropdown */
.nav-item-dropdown {
    position: relative;
    height: auto !important;
    align-self: center;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(20, 33, 48, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 8px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    /* small delay on close so crossing the gap / a slight wobble doesn't snap it shut */
    transition: opacity 0.2s ease 0.15s, transform 0.25s ease, visibility 0.2s ease 0.15s;
    z-index: 1001;
    pointer-events: none;
}

/* Invisible bridge that fills the gap between FAKTEN and the menu,
   so the cursor stays inside the hover zone on the way down. */
.nav-item-dropdown:hover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 14px;
    z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.nav-dropdown li {
    padding: 0;
    height: auto;
    width: 100%;
}

.nav-dropdown li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown li a {
    display: block;
    padding: 11px 22px;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.nav-dropdown li a:hover {
    font-weight: 700;
    opacity: 1;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 50%, #4a90c2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -125px;
    left: 0;
    width: 100%;
    height: calc(100% + 125px);
    background-image: url('../img/shared/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Per-page hero background overrides (reuses all .hero / .hero-title styling) */
.hero--geschichte .hero-background {
    background-image: url('../img/geschichte/geschichte-hero.png');
    background-position: center 50%;
}

.hero--einrichtung .hero-background {
    background-image: url('../img/einrichtung/einrichtung-hero.png');
}

.hero--bilder .hero-background {
    background-image: url('../img/bilder/bilder-hero.png');
}

.hero--toerns .hero-background {
    background-image: url('../img/toerns/toerns-hero.png');
}

.hero--toerns .hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(30, 58, 95, 0.6) 85%, #1e3a5f 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #1e3a5f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a5f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 0.8;
}

.scroll-text {
    font-family: 'Lato', sans-serif;
    font-size: clamp(18px, 1.5vw, 25px);
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
}

@keyframes bounceDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    background-color: #2C3D56;
    padding: 8vh 0 4vh 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image-1,
.about-image-2 {
    width: 100%;
    overflow: hidden;
}

.about-image-1 img,
.about-image-2 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.about-line {
    width: 60px;
    height: 2px;
    background-color: #FFFFFF;
    flex-shrink: 0;
}

.about-title {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.about-content-left{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-content-right {
    padding-bottom: 40px;
}

.about-content-left p,
.about-content-right p {
    font-family: 'Lato', sans-serif;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

.about-content-left p strong,
.about-content-right p strong {
    font-weight: 700;
}

.history-link-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.history-link {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease;
}

.history-link:hover {
    opacity: 0.7;
}

.history-link::after {
    content: '';
    width: 40px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 20'%3E%3Cpath d='M5 10 L35 10 M30 5 L35 10 L30 15' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
}

/* Reusable Content Section (light text + media layout, shared across subpages) */
.content-section {
    background-color: #EAEDF1;
    padding: 10vh 0;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
    align-items: start;
}

.content-container--single {
    grid-template-columns: 1fr;
    max-width: 900px;
}

.content-image--full {
    width: 100%;
    height: auto;
}

.content-image--full img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.content-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-col:has(.content-image) {
    align-self: stretch;
}

.content-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.content-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.content-line {
    width: 60px;
    height: 2px;
    background-color: #2C3D56;
    flex-shrink: 0;
}

.content-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #2C3D56;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.content-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-style: italic;
    font-weight: 300;
    color: #2C3D56;
    line-height: 1.2;
    margin: 0;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-text p {
    font-family: 'Lato', sans-serif;
    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 400;
    color: #313131;
    line-height: 1.7;
    margin: 0;
}

.content-text a {
    color: #2C3D56;
    text-decoration: underline;
}

.content-link {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #2C3D56;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease;
    margin-top: 8px;
}

.content-link:hover {
    opacity: 0.7;
}

.content-link::after {
    content: '';
    width: 40px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 20'%3E%3Cpath d='M5 10 L35 10 M30 5 L35 10 L30 15' stroke='%232C3D56' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
}

/* Dark variant — same grid, dark navy background (matches homepage About section) */
.content-section--dark {
    background-color: #2C3D56;
}

.content-section--dark .content-line {
    background-color: #FFFFFF;
}

.content-section--dark .content-eyebrow {
    color: #FFFFFF;
}

.content-section--dark .content-title {
    color: #FFFFFF;
}

/* Schiffsdaten data table */
.schiffsdaten-table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.schiffsdaten-row {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schiffsdaten-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.schiffsdaten-label {
    font-family: 'Lato', sans-serif;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.schiffsdaten-dots {
    flex: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
    margin: 0 12px;
    position: relative;
    top: -4px;
}

.schiffsdaten-value {
    font-family: 'Lato', sans-serif;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 400;
    color: #FFFFFF;
    text-align: right;
    flex-shrink: 0;
    max-width: 55%;
    line-height: 1.4;
}

.schiffsdaten-value a {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Simple fading image gallery (used in content sections) */
/* Center the gallery vertically against the taller text column beside it */
.content-col:has(.content-gallery) {
    align-self: stretch;
    justify-content: center;
}

.content-gallery {
    position: relative;
    width: 100%;
}

.content-gallery-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
}

.content-gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.content-gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.content-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-gallery-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.content-gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.08);
}

.content-gallery-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.content-gallery-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.content-gallery-dot.active {
    width: 26px;
    border-radius: 6px;
    background: #FFFFFF;
}

/* Bullet list inside content sections */
.content-list {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-list li {
    font-family: 'Lato', sans-serif;
    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 400;
    color: #313131;
    line-height: 1.6;
}

.content-section--dark .content-list li {
    color: #FFFFFF;
}

.content-section--dark .content-image {
    width: 80%;
    height: auto;
    margin: 0 auto;
}

.content-section--dark .content-image img {
    height: auto;
}

.content-section--dark .deckplan-wrapper {
    width: 80%;
    margin: 0 auto;
}

.content-section--dark .content-text p,
.content-section--dark .content-text strong {
    color: #FFFFFF;
}

.content-section--dark .deckplan-label {
    color: #FFFFFF;
}

/* Deck plan side-by-side layout */
.content-col--deckplans {
    justify-content: center;
}

.deckplan-wrapper {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
}

.deckplan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.deckplan img {
    width: 100%;
    height: auto;
    display: block;
}

.deckplan-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2C3D56;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ============================================================
   Bilder Page
   ============================================================ */

.bilder-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
    align-items: start;
}

.bilder-intro-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bilder-intro-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(36px, 3.5vw, 56px);
    font-weight: 300;
    font-style: italic;
    color: #2C3D56;
    line-height: 1.2;
}

.bilder-intro-desc {
    font-family: 'Lato', sans-serif;
    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 400;
    color: #313131;
    line-height: 1.7;
}

.bilder-intro-desc a {
    color: #2C3D56;
    text-decoration: underline;
}

.bilder-featured-img {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.bilder-featured-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

/* Tab bar */
.bilder-tabs-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px 40px;
}

.bilder-tab-bar {
    display: flex;
    gap: 48px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

.bilder-tab-btn {
    background: none;
    border: none;
    padding: 0 0 14px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.bilder-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2C3D56;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.bilder-tab-btn.active {
    color: #2C3D56;
    font-weight: 700;
}

.bilder-tab-btn.active::after {
    transform: scaleX(1);
}

/* Photo grid */
.bilder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.bilder-grid-panel {
    display: none;
}

.bilder-grid-panel.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.bilder-grid-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 3px;
    aspect-ratio: 1 / 1;
}

.bilder-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.bilder-grid-item:hover img {
    transform: scale(1.05);
    opacity: 0.88;
}

/* Lightbox */
.bilder-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

.bilder-lightbox.open {
    display: flex;
}

.bilder-lightbox-img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    border-radius: 3px;
    user-select: none;
}

.bilder-lightbox-close {
    position: fixed;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s;
    z-index: 9001;
}

.bilder-lightbox-close:hover { opacity: 1; }

.bilder-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 9001;
}

.bilder-lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.bilder-lightbox-prev { left: 24px; }
.bilder-lightbox-next { right: 24px; }

.bilder-lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .bilder-intro,
    .bilder-tabs-section {
        grid-template-columns: 1fr;
        padding: 40px 24px 32px;
    }
    .bilder-grid-panel.active {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   End Bilder
   ============================================================ */

/* ============================================================
   Impressum Page
   ============================================================ */

.impressum-page {
    background: #2C3D56;
    padding-top: 125px;
    min-height: calc(100vh - 125px);
}

.impressum-section {
    padding: 80px 0 60px;
}

.impressum-section--datenschutz {
    padding-top: 0;
    padding-bottom: 80px;
}

.impressum-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 120px;
    align-items: start;
}

.impressum-container--single {
    grid-template-columns: 1fr;
    max-width: 760px;
    text-align: center;
}

.impressum-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.impressum-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(36px, 3.5vw, 56px);
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.impressum-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.impressum-block p {
    font-family: 'Lato', sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.impressum-block strong {
    color: #ffffff;
    font-weight: 700;
}

.impressum-block a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.impressum-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 12px 0;
}

/* ============================================================
   End Impressum
   ============================================================ */

@media (max-width: 900px) {
    .content-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 32px;
    }
    .deckplan-wrapper {
        gap: 16px;
    }
}

/* Gallery Slider Section */
.gallery-section {
    background: linear-gradient(to bottom, #2C3D56 0%, #2C3D56 50%, #FFFFFF 50%, #FFFFFF 100%);
    padding: 0 0 4vh 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.gallery-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.gallery-slider {
    position: relative;
    width: 100%;
    padding: 0 80px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
    padding: 40px 0;
}

.slide {
    flex: 0 0 auto;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.4;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    order: 2;
    transform: translateX(0) scale(0.8);
    filter: grayscale(20%) brightness(0.85);
}

.slide.active {
    flex: 0 0 50%;
    opacity: 1;
    z-index: 2;
    transform: translateX(0) scale(1);
    order: 2;
    filter: grayscale(0%) brightness(1);
    box-shadow: none;
    cursor: default;
}

.slide.prev {
    flex: 0 0 28%;
    transform: translateX(-15px) scale(0.8);
    order: 1;
}

.slide.next {
    flex: 0 0 28%;
    transform: translateX(15px) scale(0.8);
    order: 3;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide:not(.active):hover {
    opacity: 0.65;
    transform: translateX(0) scale(0.85);
    filter: grayscale(0%) brightness(0.95);
}

.slide.prev:hover {
    transform: translateX(-10px) scale(0.85);
}

.slide.next:hover {
    transform: translateX(10px) scale(0.85);
}

/* Gallery Navigation Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.gallery-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gallery-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-arrow svg path {
    stroke: #2C3D56;
    stroke-width: 2.5;
}

.gallery-arrow-left {
    left: 10px;
}

.gallery-arrow-right {
    right: 10px;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 0;
    flex-shrink: 0;
    transform: scale(1);
}

.pagination-dot.active {
    width: 32px;
    height: 12px;
    border-radius: 6px;
    background-color: #9E9E9E;
    transform: scale(1.05);
}

.pagination-dot:hover {
    background-color: #B8B8B8;
    transform: scale(1.1);
}

.gallery-link-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 80px;
}

.gallery-link {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #313131;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease;
}

.gallery-link:hover {
    opacity: 0.7;
}

.gallery-link::after {
    content: '';
    width: 40px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 20'%3E%3Cpath d='M5 10 L35 10 M30 5 L35 10 L30 15' stroke='%23313131' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
}

/* Reviews Section */
.reviews-section {
    background-color: #FFFFFF;
    padding: 4vh 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.reviews-left {
    position: relative;
}

.review-slide {
    display: none;
    position: relative;
}

.review-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.quote-open {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
}

.quote-open img {
    width: 120px;
    height: auto;
    opacity: 0.3;
}

.quote-close {
    position: absolute;
    bottom: -40px;
    right: 20px;
    z-index: 1;
}

.quote-close img {
    width: 120px;
    height: auto;
    opacity: 0.3;
}

.review-text {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.review-quote {
    font-family: 'Lato', sans-serif;
    font-size: clamp(18px, 1.5vw, 24px);
    font-style: italic;
    font-weight: 400;
    color: #313131;
    line-height: 1.6;
    margin-bottom: 30px;
}

.review-author {
    font-family: 'Lato', sans-serif;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 700;
    color: #313131;
    margin-bottom: 10px;
}

.review-destination {
    font-family: 'Lato', sans-serif;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 300;
    color: #313131;
}

.reviews-right {
    position: relative;
}

.review-image-slider {
    position: relative;
    width: 100%;
}

.review-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.review-image-slide {
    display: none;
    width: 100%;
}

.review-image-slide.active {
    display: block;
}

.review-image-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.8);
}

.slider-arrow svg path {
    stroke: white;
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.review-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.review-dot.active {
    width: 32px;
    height: 12px;
    border-radius: 6px;
    background-color: #9E9E9E;
}

.review-dot:hover {
    background-color: #B8B8B8;
}

.reviews-footer {
    margin-top: 20px;
}

.reviews-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviews-line {
    width: 60px;
    height: 2px;
    background-color: #313131;
    flex-shrink: 0;
}

.reviews-title {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #313131;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.reviews-question {
    font-family: 'Lato', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-style: italic;
    font-weight: 400;
    color: #313131;
    margin: 0;
    line-height: 1.2;
}

/* CTA Section */
.cta-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.cta-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(36px, 4vw, 64px);
    font-style: italic;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.cta-button {
    font-family: 'Lato', sans-serif;
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 600;
    color: #FFFFFF;
    background-color: #2C3D56;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1e2d42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #2C3D56;
    width: 100%;
    padding: 50px 0 40px 0;
}

.footer-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-company {
    font-family: 'Lato', sans-serif;
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-address,
.footer-email,
.footer-phone {
    font-family: 'Lato', sans-serif;
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-icon {
    flex-shrink: 0;
    margin-top: 0px;
    width: 24px;
    height: 24px;
}

.footer-email a,
.footer-phone a {
    color: #FFFFFF;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-email a:hover,
.footer-phone a:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 36px;
    height: 36px;
}

.social-link:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    text-align: left;
    padding-left: 200px;
}

.footer-right-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.footer-logo {
    width: 150px;
    height: auto;
    display: block;
}

.footer-right-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-heading {
    font-family: 'Lato', sans-serif;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.footer-right .footer-email {
    justify-content: flex-start;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-link {
    font-family: 'Lato', sans-serif;
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-separator {
    color: #FFFFFF;
    font-size: 16px;
    opacity: 0.5;
}

.scroll-to-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.scroll-to-top:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

.scroll-to-top svg {
    transform: rotate(0deg);
}

/* ============================================================
   AI Chat Widget
   ============================================================ */

.chat-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

/* Chat widget hidden for now — not in use yet.
   Its fixed container was overlapping (and blocking clicks on) page content.
   Delete this single rule to re-enable the AI assistant later. */
.chat-widget {
    display: none;
}

/* Toggle button */
.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2C3D56;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(44, 61, 86, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    position: relative;
    flex-shrink: 0;
}

.chat-toggle-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(44, 61, 86, 0.55);
    background-color: #1e2d42;
}

.chat-icon-open,
.chat-icon-close {
    position: absolute;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.chat-icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

.chat-widget.open .chat-icon-open {
    opacity: 0;
    transform: rotate(90deg);
}

.chat-widget.open .chat-icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #c0392b;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.chat-widget.open .chat-badge {
    opacity: 0;
}

/* Chat panel */
.chat-panel {
    width: 380px;
    max-height: 540px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-widget.open .chat-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Header */
.chat-header {
    background: #2C3D56;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-title {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.chat-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    margin-top: 2px;
}

.chat-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.chat-close-btn:hover {
    opacity: 1;
}

/* Messages area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.chat-message {
    max-width: 88%;
    padding: 12px 16px;
    border-radius: 14px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    animation: messageSlideIn 0.25s ease;
}

@keyframes messageSlideIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.chat-message.user {
    background: #2C3D56;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.assistant {
    background: #f0f4f8;
    color: #313131;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.assistant p {
    margin: 0;
}

.chat-message.assistant p + p {
    margin-top: 6px;
}

/* Typing / tool-call indicator */
.chat-typing {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: #f0f4f8;
    padding: 12px 16px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
}

.chat-typing-dots {
    display: flex;
    gap: 4px;
}

.chat-typing-dot {
    width: 7px;
    height: 7px;
    background: #2C3D56;
    border-radius: 50%;
    animation: typingBounce 1.2s ease-in-out infinite;
    opacity: 0.5;
}

.chat-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30%            { transform: translateY(-5px); opacity: 1; }
}

.chat-typing-label {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #888;
}

/* Input area */
.chat-input-area {
    border-top: 1px solid #e8ecf0;
    padding: 14px 16px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    background: #fff;
    flex-shrink: 0;
}

.chat-input {
    flex: 1;
    border: 1px solid #dde3ea;
    border-radius: 12px;
    padding: 10px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #333;
    resize: none;
    outline: none;
    line-height: 1.5;
    max-height: 120px;
    overflow-y: auto;
    transition: border-color 0.2s ease;
    background: #f8fafc;
}

.chat-input:focus {
    border-color: #2C3D56;
    background: #fff;
}

.chat-input::placeholder {
    color: #aab;
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #2C3D56;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.chat-send-btn:hover {
    background: #1e2d42;
    transform: scale(1.05);
}

.chat-send-btn:disabled {
    background: #b0bac8;
    cursor: not-allowed;
    transform: none;
}

/* Responsive — smaller on mobile */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 20px;
        right: 16px;
    }

    .chat-panel {
        width: calc(100vw - 32px);
        max-height: 70vh;
    }

    .chat-toggle-btn {
        width: 54px;
        height: 54px;
    }
}

/* ============================================================
   Animations
   ============================================================ */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1920px) {
    .navbar {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .nav-container {
        padding: 0 60px 10px 60px;
    }

    .nav-left {
        padding-left: 28px;
        gap: 35px;
    }

    .nav-right {
        padding-right: 28px;
        gap: 35px;
    }

    .logo a {
        font-size: 28px;
    }

    .nav-menu li a {
        font-size: 14px;
    }

    .about-container {
        padding: 0 60px;
    }

    .gallery-container {
        padding: 0;
    }

    .gallery-slider {
        padding: 0 60px;
    }

    .gallery-arrow {
        width: 50px;
        height: 50px;
    }

    .gallery-arrow-left {
        left: 5px;
    }

    .gallery-arrow-right {
        right: 5px;
    }

    .gallery-link-wrapper {
        padding: 0 0px;
    }

    .reviews-container {
        padding: 0 60px;
    }

    .reviews-question {
        font-size: 72px;
    }

    .footer {
        padding: 40px 0 30px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 60px;
    }

    .footer-right {
        padding-left: 0;
    }

    .footer-right-content {
        flex-direction: column;
        gap: 25px;
    }

    .footer-logo-wrapper {
        align-self: center;
    }

    .footer-logo {
        width: 130px;
    }

    .footer-section {
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .scroll-to-top {
        right: 0;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        min-height: 70px;
    }

    .nav-container {
        height: auto;
        min-height: 70px;
        padding: 1rem;
        padding-bottom: 15px;
        flex-wrap: wrap;
        align-items: flex-end;
    }

    .hamburger {
        display: flex;
        order: 3;
        width: 100%;
        justify-content: flex-end;
    }

    .nav-left,
    .nav-right {
        padding: 0;
        gap: 14px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        height: auto;
        align-items: center;
        padding-bottom: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        height: auto;
        padding-bottom: 0;
    }

    /* Mobile Dropdown Styles */
    .nav-item-dropdown {
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        background: rgba(44, 61, 86, 0.9);
        border-radius: 6px;
        margin: 10px 20px 0 20px;
        padding: 8px 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: none;
    }

    .nav-item-dropdown.active .nav-dropdown {
        max-height: 200px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-item-dropdown.active .nav-dropdown li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-item-dropdown.active .nav-dropdown li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-item-dropdown.active .nav-dropdown li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-dropdown li a {
        color: #FFFFFF;
        font-size: 14px;
        padding: 8px 15px;
    }

    .nav-dropdown li a:hover {
        padding-left: 20px;
        opacity: 0.8;
    }

    .logo {
        position: static;
        transform: none;
        order: 2;
        flex: 1;
        height: auto;
        padding-bottom: 0;
    }

    .logo a {
        font-size: 22px;
    }

    .nav-menu li a {
        font-size: 14px;
    }

    .hero {
        margin-top: 0;
    }

    .hero-background {
        top: -70px;
        height: calc(100% + 70px);
    }

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

    .scroll-text {
        font-size: 20px;
    }

    .scroll-arrow {
        width: 45px;
        height: 45px;
    }

    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 40px;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-title {
        font-size: 22px;
    }

    .about-content-left p,
    .about-content-right p {
        font-size: 19px;
    }

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-container {
        padding: 0;
    }

    .gallery-slider {
        padding: 0 50px;
    }

    .gallery-arrow {
        width: 45px;
        height: 45px;
    }

    .gallery-arrow-left {
        left: 5px;
    }

    .gallery-arrow-right {
        right: 5px;
    }

    .gallery-link-wrapper {
        padding: 0 0px;
    }

    .slider-wrapper {
        gap: 15px;
        padding: 30px 0;
    }

    .reviews-container {
        padding: 0 40px;
    }

    .reviews-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews-question {
        font-size: 48px;
    }

    .review-quote,
    .review-author,
    .review-destination {
        font-size: 20px;
    }

    .footer {
        padding: 35px 0 25px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 40px;
    }

    .footer-right {
        padding-left: 0;
    }

    .footer-right-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo-wrapper {
        align-self: center;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-section {
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
        margin-top: 8px;
    }

    .scroll-to-top {
        right: 0;
        width: 38px;
        height: 38px;
    }

    .scroll-to-top svg {
        width: 16px;
        height: 16px;
    }

    .cta-title {
        font-size: 48px;
    }

    .cta-button {
        font-size: 24px;
        padding: 10px 20px;
    }

    .slide.active {
        flex: 0 0 60%;
    }

    .slide.prev,
    .slide.next {
        flex: 0 0 25%;
        filter: blur(2px) brightness(0.7);
    }

    .slide img {
        max-height: 400px;
    }

    .slide:not(.active):hover {
        transform: translateX(0) scale(0.85);
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .scroll-text {
        font-size: 18px;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }

    .scroll-arrow svg {
        width: 16px;
        height: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        text-align: center;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-container {
        padding: 0 30px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 22px;
    }

    .about-content-left p,
    .about-content-right p {
        font-size: 18px;
    }

    .history-link {
        font-size: 18px;
    }

    .gallery-section {
        padding: 40px 0;
    }

    .gallery-container {
        padding: 0;
    }

    .gallery-slider {
        padding: 0 40px;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-arrow svg {
        width: 20px;
        height: 20px;
    }

    .gallery-arrow-left {
        left: 0px;
    }

    .gallery-arrow-right {
        right: 0px;
    }

    .gallery-link-wrapper {
        padding: 0 0px;
    }

    .slider-wrapper {
        gap: 10px;
        padding: 30px 0;
    }

    .reviews-container {
        padding: 0 30px;
    }

    .reviews-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-question {
        font-size: 36px;
    }

    .review-quote,
    .review-author,
    .review-destination {
        font-size: 18px;
    }

    .quote-open img,
    .quote-close img {
        width: 80px;
    }

    .footer {
        padding: 30px 0 20px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 30px;
    }

    .footer-company,
    .footer-heading {
        font-size: 18px;
    }

    .footer-address,
    .footer-email,
    .footer-phone,
    .footer-link {
        font-size: 14px;
    }

    .footer-icon {
        width: 20px;
        height: 20px;
    }

    .footer-logo {
        width: 110px;
    }

    .social-link svg {
        width: 32px;
        height: 32px;
    }

    .footer-right-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo-wrapper {
        align-self: center;
    }

    .footer-section {
        align-items: flex-start;
        gap: 8px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-direction: column;
        gap: 5px;
        margin-top: 5px;
    }

    .footer-separator {
        display: none;
    }

    .scroll-to-top {
        right: 0;
        width: 36px;
        height: 36px;
    }

    .scroll-to-top svg {
        width: 14px;
        height: 14px;
    }

    .cta-section {
        height: 500px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-button {
        font-size: 20px;
        padding: 10px 18px;
    }

    .slide {
        filter: none;
    }

    .slide.active {
        flex: 0 0 100%;
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.06),
            0 6px 30px rgba(0, 0, 0, 0.04);
    }

    .slide.prev,
    .slide.next {
        display: none;
    }

    .slide img {
        max-height: 350px;
    }

    .gallery-link {
        font-size: 18px;
    }
}

