/* ===== CUSTOM FONTS ===== */
@font-face {
    font-family: 'OneSignature';
    src: url('../fonts/OneSignature.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham-bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'AvenirNextLTPro';
    src: url('../fonts/AvenirNextLTPro-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Delycost';
    src: url('../fonts/Delycost.ttf') format('truetype');
    font-weight: 400;
}

/* ===== VARIABLES ===== */
:root {
    --navy: #2b3a67;
    --dark-navy: #1e2749;
    --orange: #ff6b4a;
    --sage: #b5c4a1;
    --gray: #a8adb5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham', 'Poppins', sans-serif;
    overflow-x: visible;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 9999;
    padding: 30px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .logo img {
    height: 60px;
}

.navbar.scrolled .nav-menu a {
    color: var(--navy);
    text-shadow: none;
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--navy);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 200px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-menu a:hover {
    opacity: 0.8;
}

.btn-language {
    background: var(--orange);
    color: white !important;
    padding: 11px 20px;
    border-radius: 22px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Gotham', 'Poppins', sans-serif;
    transition: all 0.3s;
}

.btn-language:hover {
    background: #e55a3a;
}

.btn-language #current-lang {
    font-weight: 700;
}

.btn-book {
    background: var(--gray);
    color: white !important;
    padding: 11px 24px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'OneSignature', cursive;
    font-size: 14rem;
    font-weight: 400;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    opacity: 0;
    visibility: hidden;
    color: var(--navy);
    margin-bottom: 0;
    margin-top: -150px;
    position: relative;
    z-index: 1;
}

/* ===== BOOKING FORM ===== */
.booking-form {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 39, 73, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 75px;
    display: flex;
    gap: 14px;
    align-items: flex-end;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.booking-date-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    background: var(--orange);
    border-radius: 38px;
    padding: 8px 28px;
    height: 50px;
    box-sizing: border-box;
    transition: background 0.3s ease;
    user-select: none;
    position: relative;
}

.booking-date-group:hover {
    background: #e55a3a;
}

.booking-date-group.active {
    background: #e55a3a;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.booking-date-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.booking-date-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 300;
}

.booking-date-label {
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.booking-date-value {
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* ===== CUSTOM CALENDAR ===== */
.hop-calendar {
    display: none;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 39, 73, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    width: 320px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
    animation: calFadeIn 0.2s ease;
}

.hop-calendar.visible {
    display: block;
}

@keyframes calFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hop-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hop-cal-month {
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

.hop-cal-nav {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.hop-cal-nav:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.hop-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 8px;
}

.hop-cal-weekdays span {
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    letter-spacing: 1px;
    padding: 6px 0;
}

.hop-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.hop-cal-day {
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 13px;
    color: white;
    text-align: center;
    padding: 10px 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s ease;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hop-cal-day:hover {
    background: rgba(214, 109, 88, 0.3);
}

.hop-cal-day.today {
    border: 1px solid var(--orange);
}

.hop-cal-day.selected {
    background: var(--orange);
    color: white;
    font-weight: 700;
}

.hop-cal-day.in-range {
    background: rgba(214, 109, 88, 0.15);
    border-radius: 0;
}

.hop-cal-day.range-start {
    border-radius: 50% 0 0 50%;
}

.hop-cal-day.range-end {
    border-radius: 0 50% 50% 0;
}

.hop-cal-day.disabled {
    color: rgba(255, 255, 255, 0.15);
    cursor: default;
    pointer-events: none;
}

.hop-cal-day.empty {
    cursor: default;
    pointer-events: none;
}

.booking-select {
    background: var(--orange);
    color: white;
    border: none;
    padding: 15px 28px;
    border-radius: 38px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: 'Gotham', 'Poppins', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    height: 50px;
    box-sizing: border-box;
}

.booking-select option {
    background: var(--dark-navy);
    color: white;
}

.booking-input {
    background: var(--orange);
    color: white;
    border: none;
    padding: 18px 42px;
    border-radius: 38px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 225px;
    font-family: 'Gotham', 'Poppins', sans-serif;
}

.booking-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.booking-btn-book {
    background: var(--gray);
    color: white;
    border: none;
    padding: 15px 28px;
    border-radius: 38px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    box-sizing: border-box;
    white-space: nowrap;
    text-decoration: none;
}

.booking-btn-book:hover {
    background: #8f94a0;
}

/* ===== ADVENTURES SECTION ===== */
.adventures {
    background: #212244;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.adventures-title {
    color: var(--orange);
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.adventures-subtitle {
    font-family: 'OneSignature', cursive;
    color: var(--orange);
    text-align: center;
    font-size: 4rem;
    margin-bottom: 80px;
}

.adventures-grid {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.adventures-image-left {
    flex: 0 0 50%;
}

.adventures-image-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.adventures-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: white;
}

.adventures-rabbit {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: auto;
}

.adventures-rabbit img {
    width: 50%;
    height: auto;
    display: block;
    opacity: 0.5;
}

.adventures-text {
    flex: 1;
}

.adventures-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.btn-plan {
    display: inline-block;
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-plan:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

/* ===== APARTMENTS SECTION ===== */
.apartments-section {
    background: #a3a891;
    padding: 0;
    position: relative;
    overflow: visible;
    z-index: 2;
    will-change: transform;
    transform: translateZ(0);
}

.apartments-section::before {
    content: '';
    position: absolute;
    left: -200px;
    bottom: -400px;
    width: 800px;
    height: 800px;
    background-image: url('../images/HasenOhren-HOP.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 5;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.apartments-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.apartments-top-image {
    width: 100%;
    height: 70vh;
    min-height: 600px;
    max-height: 800px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.apartments-title-section {
    background: transparent;
    padding: 80px 0 60px 0;
    text-align: center;
}

.apartments-title {
    color: #212244;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.apartments-subtitle {
    font-family: 'OneSignature', cursive;
    color: #212244;
    text-align: center;
    font-size: 4rem;
    margin-bottom: 0;
}

.apartments-top-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.apartments-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: default;
}

.apartments-top-image img:hover {
    transform: none;
}

.apartments-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: transparent;
    padding: 80px 60px 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.apartments-small-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    z-index: 1;
}

.apartments-small-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.apartments-small-image img:hover {
    transform: scale(1.05);
}

.apartments-info {
    background: transparent;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}
.apartments-info h2 {
    color: var(--orange);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.apartments-info p {
    font-family: 'AvenirNextLTPro', 'Gotham', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e1ddd4;
    font-weight: 300;
}

.apartments-info .apt-subtitle {
    font-family: 'OneSignature', cursive !important;
    font-size: 4rem !important;
    line-height: 1.4 !important;
    margin-bottom: 25px;
    font-weight: 700 !important;
    text-transform: none;
    letter-spacing: 0;
}

.apt-subtitle span {
    font-weight: 700;
    font-family: 'OneSignature', cursive;
}

.apt-desc {
    margin-top: 20px;
    margin-bottom: 25px;
}

.apt-desc .highlight {
    color: inherit;
    font-weight: 700;
    font-family: 'Gotham', sans-serif;
}

.btn-apartments {
    display: inline-block;
    background: transparent;
    color: #e1ddd4;
    width: fit-content;
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid var(--orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    font-family: 'AvenirNextLTPro', 'Gotham', sans-serif;
    text-transform: uppercase;
    margin-top: 10px;
}

.btn-apartments:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: var(--navy);
    padding: 40px 40px 80px 40px;
    text-align: center;
}

.location-section h2 {
    font-family: 'Gotham', sans-serif;
    color: var(--orange);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: inline-block;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 95%;
    line-height: 1.2;
}

.map-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.map-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* ===== FACTS SECTION ===== */
.facts-section {
    background: #a3a891;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    z-index: 0;
    will-change: transform;
    transform: translateZ(0);
}

.facts-main-title {
    font-family: 'Gotham', sans-serif;
    color: #212244;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 auto 80px auto;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    line-height: 1.2;
    position: relative;
    z-index: 10;
}

.facts-content {
    width: 100%;
    position: relative;
    overflow: visible;
    z-index: 10;
}


.facts-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
    padding: 0 20px;
    position: relative;
    overflow: visible;
}

.fact-polaroid {
    background: linear-gradient(135deg, 
                #f5f1e8 0%, 
                #ede8dc 25%, 
                #f0ebe0 50%, 
                #e8e3d7 75%, 
                #f2ede2 100%);
    padding: 15px;
    padding-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
                0 3px 10px rgba(0, 0, 0, 0.3),
                inset 0 0 60px rgba(139, 119, 101, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-height: 350px;
}

.fact-polaroid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Große Flecken */
        radial-gradient(ellipse at 15% 85%, rgba(160, 130, 100, 0.15) 0%, transparent 30%),
        radial-gradient(ellipse at 85% 90%, rgba(140, 110, 80, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 5% 95%, rgba(150, 120, 90, 0.18) 0%, transparent 20%),
        radial-gradient(circle at 95% 88%, rgba(130, 100, 70, 0.14) 0%, transparent 22%),
        /* Mittlere Flecken */
        radial-gradient(circle at 25% 92%, rgba(170, 140, 110, 0.1) 0%, transparent 15%),
        radial-gradient(circle at 70% 94%, rgba(155, 125, 95, 0.11) 0%, transparent 18%),
        radial-gradient(circle at 50% 88%, rgba(145, 115, 85, 0.09) 0%, transparent 12%),
        /* Kleine Flecken überall */
        radial-gradient(circle at 10% 80%, rgba(160, 130, 100, 0.08) 0%, transparent 10%),
        radial-gradient(circle at 40% 85%, rgba(150, 120, 90, 0.07) 0%, transparent 8%),
        radial-gradient(circle at 60% 90%, rgba(140, 110, 80, 0.09) 0%, transparent 11%),
        radial-gradient(circle at 90% 82%, rgba(155, 125, 95, 0.08) 0%, transparent 9%),
        /* Subtile Textur */
        radial-gradient(circle at 30% 70%, rgba(139, 119, 101, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(139, 119, 101, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.polaroid-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: sepia(25%) saturate(110%) hue-rotate(-10deg) brightness(105%) contrast(95%);
}

.fact-polaroid:hover .polaroid-photo {
    opacity: 0;
}

/* Linke Spalte */
.polaroid-1 { transform: rotate(-3deg); grid-column: 1; grid-row: 1; }
.polaroid-4 { transform: rotate(3deg); grid-column: 1; grid-row: 3; margin-top: -120px; }

/* Mittlere Spalte - versetzt */
.polaroid-2 { 
    transform: rotate(2deg);
    grid-column: 2; 
    grid-row: 2;
    position: relative;
    top: -150px;
}
.polaroid-6 { 
    transform: rotate(2deg);
    grid-column: 2; 
    grid-row: 4;
    position: relative;
    top: -250px;
}

/* Rechte Spalte */
.polaroid-3 { transform: rotate(-2deg); grid-column: 3; grid-row: 1; }
.polaroid-5 { transform: rotate(-1deg); grid-column: 3; grid-row: 3; margin-top: -120px; }

.fact-polaroid:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
                0 5px 15px rgba(0, 0, 0, 0.4);
}

.polaroid-2:hover {
    transform: rotate(0deg) scale(1.02);
    top: -160px;
}

.polaroid-6:hover {
    transform: rotate(0deg) scale(1.02);
    top: -260px;
}

.polaroid-text-box {
    background: var(--navy);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    aspect-ratio: 4/3;
    z-index: 2;
}

.fact-polaroid:hover .polaroid-text-box {
    opacity: 1;
}

.polaroid-text-box p {
    margin: 0 0 10px 0;
    text-align: left;
}

.polaroid-text-box p:last-child {
    margin-bottom: 0;
}

.polaroid-text-box strong {
    font-weight: 700;
}

.polaroid-title {
    font-family: 'Delycost', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 15px 0 0 0;
    padding: 0;
    position: relative;
}

.fact-polaroid::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../images/HasenOhren-HOP.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 3;
}

/* Reißzwecken/Pins oben an den Polaroids */
.fact-polaroid::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-image: url('../images/reisszwecke-HOP.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Verschiedene Rotationen und Farben für die Pins */
.polaroid-1::after { 
    transform: translateX(-50%) rotate(-15deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) hue-rotate(0deg);
}
.polaroid-2::after { 
    transform: translateX(-50%) rotate(12deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) hue-rotate(200deg);
}
.polaroid-3::after { 
    transform: translateX(-50%) rotate(-8deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) hue-rotate(100deg);
}
.polaroid-4::after { 
    transform: translateX(-50%) rotate(18deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) hue-rotate(40deg);
}
.polaroid-5::after { 
    transform: translateX(-50%) rotate(-12deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) hue-rotate(20deg);
}
.polaroid-6::after { 
    transform: translateX(-50%) rotate(10deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) hue-rotate(280deg);
}

/* Abwechselnde Positionen für jedes Polaroid - ganz unten am Rand */
.polaroid-1::before {
    bottom: 5px;
    left: 10px;
}

.polaroid-2::before {
    bottom: 5px;
    right: 10px;
}

.polaroid-3::before {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.polaroid-4::before {
    bottom: 5px;
    left: 10px;
}

.polaroid-5::before {
    bottom: 5px;
    right: 10px;
}

.polaroid-6::before {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}


/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-logo {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: 'OneSignature', cursive;
    font-size: 1.8rem;
    color: var(--orange);
    text-align: center;
}

.footer-section h3 {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-company {
    font-weight: 600;
    color: white;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-social svg {
    color: white;
}

.footer-newsletter {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-credits {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-credits a:hover {
    color: var(--orange);
}

.heart {
    color: #ff4444;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--orange);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: block;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--orange);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
    .nav-container {
        padding: 0 40px;
    }
    
    .logo img {
        height: 150px;
    }
    
    .hero-title {
        font-size: 10rem;
    }
}

@media (max-width: 1024px) {
    .logo img {
        height: 120px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 8rem;
    }
    
    .booking-form {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 8px;
    }
    
    .booking-date-group {
        padding: 6px 18px;
        height: 44px;
    }
    
    .booking-date-label {
        font-size: 8px;
    }
    
    .booking-date-value {
        font-size: 12px;
    }
    
    .booking-select {
        height: 44px;
        padding: 10px 18px;
        font-size: 12px;
        padding-right: 34px;
    }
    
    .booking-btn-book {
        height: 44px;
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .hop-calendar {
        width: 300px;
        padding: 20px;
        bottom: 80px;
    }
    
    .adventures-grid {
        flex-direction: column;
    }
    
    .adventures-image-left {
        flex: 0 0 auto;
    }

    .adventures-image-left img {
        height: auto;
        max-height: 350px;
        object-fit: cover;
        width: 100%;
        border-radius: 0;
    }

    .adventures-image-left {
        margin: 0 -20px;
    }

    .adventures-subtitle {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .adventures {
        position: relative;
    }

    .adventures-rabbit {
        position: absolute;
        bottom: 0;
        right: 0;
        overflow: hidden;
    }

    .adventures-rabbit img {
        width: 80px;
        opacity: 0.5;
    }
    
    .apartments-bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .apartments-info {
        padding: 40px 30px;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facts-video-bg iframe {
        width: 150vw;
        height: 84.375vw;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .navbar.scrolled {
        padding: 6px 0;
    }

    .navbar.scrolled .logo img {
        height: 50px;
    }

    .logo img {
        height: 100px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(30, 39, 73, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 40px;
        transition: left 0.3s;
        gap: 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle span {
        background: white;
    }
    
    .hero-title {
        font-size: 5rem;
        margin-top: -50px;
    }
    
    .booking-form {
        flex-direction: column;
        width: 90%;
        padding: 20px;
        gap: 10px;
        border-radius: 30px;
    }
    
    .booking-date-group {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        border-radius: 30px;
        padding: 14px 24px;
        height: auto;
    }
    
    .booking-select,
    .booking-btn-book {
        width: 100%;
        font-size: 13px;
        padding: 14px 24px;
        height: auto;
        text-align: center;
        text-align-last: center;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .hop-calendar {
        position: fixed;
        top: 50%;
        bottom: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 360px;
        z-index: 1000;
    }
    
    .hop-calendar.visible {
        display: block;
    }
    
    @keyframes calFadeIn {
        from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
        to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    }
    
    .apartments-section {
        overflow: hidden;
    }

    .apartments-section::before {
        display: none;
    }

    .apartments-top-image {
        height: 40vh;
        min-height: 250px;
        max-height: 400px;
    }

    .apartments-title-section {
        padding: 30px 20px 15px 20px;
    }

    .apartments-title {
        font-size: 2rem;
    }

    .apartments-subtitle {
        font-size: 2.5rem;
    }

    .apartments-bottom-grid {
        padding: 15px 20px 30px 20px;
        gap: 0;
    }

    .apartments-small-image {
        padding: 10px 20px;
    }

    .apartments-small-image img {
        max-width: 100%;
        width: 100%;
    }

    .apartments-images {
        grid-template-columns: 1fr;
    }
    
    .apartments-info {
        padding: 20px 20px;
        max-width: 100%;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }
    
    /* Reset Polaroid Positionen für Mobile */
    .polaroid-1,
    .polaroid-2,
    .polaroid-3,
    .polaroid-4,
    .polaroid-5,
    .polaroid-6 {
        grid-column: 1 !important;
        grid-row: auto !important;
        margin-top: 0 !important;
        top: 0 !important;
        margin-bottom: 0;
    }
    
    .polaroid-text-box {
        min-height: 150px;
        font-size: 0.7rem;
        padding: 15px;
    }
    
    .polaroid-title {
        font-size: 2rem;
    }
    
    .facts-video-bg iframe {
        width: 200vw;
        height: 112.5vw;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .navbar.scrolled .logo img {
        height: 45px;
    }

    .logo img {
        height: 80px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-top: 0;
    }
    
    .booking-form {
        bottom: 30px;
        width: 95%;
        padding: 15px;
    }
    
    .booking-date-group {
        padding: 12px 20px;
    }
    
    .booking-date-value {
        font-size: 12px;
    }
    
    .booking-select,
    .booking-btn-book {
        font-size: 11px;
        padding: 12px 20px;
    }
    
    .adventures-title,
    .location-section h2,
    .facts-section h2 {
        font-size: 1.8rem;
    }

    .location-section {
        padding: 30px 15px 30px 15px;
    }

    .map-wrapper {
        padding: 0;
        max-width: 100%;
    }

    .map-img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .apartments-info h2 {
        font-size: 2rem;
    }
    
    .apartments-info {
        padding: 30px 20px;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 9998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #e55a2b;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

/* ===== FLOATING BOOK BUTTON ===== */
.floating-book {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-book.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-book-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-book-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.floating-book-btn svg {
    flex-shrink: 0;
}

/* Floating Booking Widget Overlay */
.floating-book-widget {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.floating-book-widget.visible {
    display: flex;
}

.floating-book-widget-inner {
    position: relative;
    background: var(--navy);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    width: 340px;
    max-width: calc(100vw - 40px);
    animation: fbFadeIn 0.25s ease forwards;
}

@keyframes fbFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.fb-date-group {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    gap: 12px;
    transition: background 0.3s ease;
}

.fb-date-group.active {
    background: #e55a2b;
}

.fb-date-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fb-date-label {
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.fb-date-value {
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.fb-date-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

.fb-calendar {
    display: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 12px;
    padding: 12px;
    margin-top: 4px;
}

.fb-calendar.visible {
    display: block;
}

.fb-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.fb-cal-month {
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 1px;
}

.fb-cal-nav {
    background: none;
    border: none;
    color: var(--orange);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
}

.fb-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 6px;
}

.fb-cal-weekdays span {
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.fb-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.fb-cal-day {
    text-align: center;
    padding: 6px 0;
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: background 0.2s ease;
}

.fb-cal-day:hover:not(.disabled):not(.empty) {
    background: rgba(255, 107, 53, 0.3);
}

.fb-cal-day.selected {
    background: var(--orange);
    color: white;
    font-weight: 600;
}

.fb-cal-day.in-range {
    background: rgba(255, 107, 53, 0.15);
    border-radius: 0;
}

.fb-cal-day.range-start {
    border-radius: 50% 0 0 50%;
}

.fb-cal-day.range-end {
    border-radius: 0 50% 50% 0;
}

.fb-cal-day.disabled {
    color: rgba(255, 255, 255, 0.15);
    cursor: default;
}

.fb-cal-day.empty {
    cursor: default;
}

.fb-cal-day.today:not(.selected) {
    border: 1px solid var(--orange);
}

.floating-book-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 0.8rem;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    text-align: center;
    text-align-last: center;
}

.floating-book-input:focus {
    border-color: var(--orange);
}

.floating-book-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.floating-book-close:hover {
    color: white;
}

.floating-book-submit {
    display: block;
    text-align: center;
    margin-top: 8px;
    padding: 12px;
    border-radius: 50px;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-family: 'Gotham', 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: background 0.3s ease;
}

.floating-book-submit:hover {
    background: #e55a2b;
    color: white;
}

@media (max-width: 768px) {
    .floating-book-btn-text {
        display: none;
    }

    .floating-book-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .floating-book {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
