/* ===================================
   SCHRIFTART RALEWAY-THIN
=================================== */

@font-face {
    font-family: 'Raleway-Thin';
    src: url('fonts/Raleway-Thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-text';
    src: url('fonts/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 240;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Alpha Slab One';
    src: url('fonts/alphaslabone-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Yatra One';
    src: url('fonts/yatraone-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Domine';
    src: url('fonts/domine-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cedarville Cursive';
    src: url('fonts/cedarvillecursive-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* ===================================
   GRUNDLEGENDE STYLES
=================================== */

:root {
    --color-white: #ffffff;
    --color-dark: #333333;
    --color-light-gray: #f8f9fa;
    --color-turquoise: #0B8F6A;
    --color-red: #FD1441;
    --color-grey: #302f30;
    --color-orange: #FFA414;
    --color-pink: #F0002F;
    --font-heading: 'Raleway-Thin', sans-serif;
    --font-body: 'Raleway-text', sans-serif;
    --font-tagline: 'Oswald', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: normal;
    color: var(--color-dark);
    overflow-x: hidden;
    position: relative;
    max-width: 100%;
    width: 100%;
}

/* ===================================
   GLOBALER KÖRNIGER FILTER (15%)
=================================== */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.4"/></svg>');
    opacity: 0.0;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: normal;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* ===================================
   LETTER STAGGER ANIMATION
=================================== */

.letter-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #00B684;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: none;
}

.letter-animation.slide-out {
    animation: slideUpScreen 0.8s ease-in-out forwards;
}

.loading-text {
    text-align: center;
}

.loading-line {
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--color-white);
    letter-spacing: 8px;
    overflow: visible;
    display: block;
    white-space: nowrap;
}

.loading-line span {
    display: inline-block;
    opacity: 0;
    animation: letterStagger 0.2s ease forwards;
}

@keyframes letterStagger {
    0% {
        opacity: 0;
        transform: translateY(64px) scale(0.44);
    }
    40% {
        transform: translateY(-24px) scale(1.24);
    }
    60% {
        transform: translateY(12px) scale(0.92);
    }
    80% {
        transform: translateY(-6.4px) scale(1.064);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideUpScreen {
    to {
        transform: translateY(-100%);
    }
}

/* ===================================
   HERO SECTION
=================================== */

.hero-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    transform: translateY(100vh);
    transition: none;
}

.hero-section.slide-in {
    animation: heroSlideIn 0.8s ease-in-out forwards;
}

@keyframes heroSlideIn {
    to {
        transform: translateY(0);
    }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

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

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Header oben, Center Mitte, Mobile unten */
    z-index: 2;
}

.position-relative {
    position: relative;
}

.hero-header {
    padding: 10px 0;
    width: 100%;
}


.logo-status-center {
    text-align: center;
    padding-top: 10px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: normal;
    color: var(--color-white);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.status-image-header {
    max-width: 300px;     /* ← absolute maximale Breite in Pixel */
    width: 80%;         /* ← Breite relativ zum Elternelement */
    height: auto;
    display: block;
    margin: 0 auto;
    animation: fadeIn 1s ease-in;
}

.header-icons-right {
    position: absolute;
    top: 30px;           /* ← fester Wert statt 50% */
    right: 30px;
    transform: none;     /* ← translateY(-50%) entfernen */
}


.desktop-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.desktop-nav a {
    color: var(--color-white);
    font-size: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.desktop-nav a:hover {
    color: #00B684;
    transform: scale(1.1);
}

.flag-icon {
    width: 30px;
    height: auto;
    border-radius: 3px;
}

.job-icon {
    width: 30px;
    height: auto;
}

.mobile-icons-bottom {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 35px;
    z-index: 10;
}

.mobile-icons-bottom a {
    color: var(--color-white);
    font-size: 28px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-icons-bottom a:hover {
    color: #00B684;
    transform: scale(1.1);
}

.mobile-icons-bottom .job-icon,
.mobile-icons-bottom .flag-icon {
    width: 28px;
    height: auto;
}

.hero-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-tagline {
    font-family: 'Federo';
    font-size: 70px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 8px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-in;
}

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

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

/* ===================================
   BEREICH B: BESCHREIBUNG (GRAU)
=================================== */

.section-description {
    background: var(--color-grey);
    color: var(--color-white);
    padding: 100px 0;
}

.section-description .section-title {
    color: var(--color-white);
}

.section-description .title-divider {
    background-color: var(--color-white);
}

.section-description .content-link {
    color: var(--color-white);
    text-decoration: underline;
    font-weight: 600;
}

.section-description .content-link:hover {
    opacity: 0.8;
}

/* ===================================
   SECTION STYLES
=================================== */

.section-light {
    background: var(--color-white);
    padding: 100px 0;
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 100px 0;
}

.content-center {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 65px;
    font-weight: normal;
    letter-spacing: 2px;
    margin: 40px 0 20px;
    text-transform: uppercase;
    position: relative;
    text-align: center;  
    width: 100%; 
}

.title-divider {
    display: block;
    width: 150px;
    height: 2px;
    background-color: #00B684;
    margin: 20px auto 30px;
}

.text-intro {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.text-content {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-link {
    color: #007bff;
    text-decoration: underline;
    font-weight: 600;
}

.content-link:hover {
    color: #0056b3;
}

.section-dark .section-title {
    color: var(--color-white);
}

.section-dark .title-divider {
    background-color: var(--color-white);
}

/* ===================================
   BEREICH C: GALERIE
=================================== */

.section-gallery {
    background-image: url('images/galleryback.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    padding: 100px 0;
    position: relative;
}

.section-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.section-gallery .container {
    position: relative;
    z-index: 2;
}

.gallery-header-center {
    text-align: center;
    margin-bottom: 20px;
}

.section-gallery .section-title {
    color: var(--color-white);
}

.section-gallery .title-divider {
    background-color: var(--color-white);
}

.gallerySwiper {
    width: 100%;
    padding: 20px 0 60px;
    margin-top: 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-img {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-white);
}

.swiper-pagination-bullet-active {
    background: var(--color-white);
}

/* Lightbox mit Swiper */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightboxSwiper {
    width: 100%;
    height: 100%;
}

.lightboxSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    margin: auto;
}

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

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-nav {
    color: var(--color-white) !important;
    z-index: 100001;
}

.lightbox .swiper-button-next,
.lightbox .swiper-button-prev {
    color: var(--color-white) !important;
}

/* ===================================
   BEREICH D: HOVER-KACHELN (DEUTSCH)
=================================== */

.section-tiles {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.tiles-container {
    display: flex;
    width: 100%;
}

.tile {
    position: relative;
    width: 50%;
    aspect-ratio: 1 / 1;     /* ← immer perfekt quadratisch, auf JEDEM Monitor */
    max-height: 100vh;        /* ← nie größer als der Bildschirm */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease;
}


.tile-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    text-align: center;
    z-index: 2;
}

.tile-block-a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.tile-block-b {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 4;
    width: 80%;        /* ← fester Prozentwert statt max-width: 120% */
    max-width: 600px;  /* ← absolutes Maximum */
    padding: 0 20px;
}


.tile-supertitle {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 32px;
    color: inherit;
    white-space: nowrap;
    margin: 0;
}

.tile-title {
    font-family: 'Yatra One', sans-serif;
    font-size: 80px;
    letter-spacing: 4px;
    white-space: nowrap;
    margin: 0;
    transition: color 0.5s ease;
}


.tile-image {
    max-width: 270px;
    width: auto;
    height: auto;
    margin: 10px 0 0 0;
}

.tile-text {
    font-family: 'Raleway-text', sans-serif;
    font-size: clamp(16px, 1.8vw, 28px);  /* ← automatisch kleiner auf iPad */
    line-height: 1.8;
    color: #ffffff !important;
    margin: 0;
    white-space: normal;
}


/* DRINKS - Standard */
.tile-drinks {
    background: var(--color-turquoise);
}

.tile-drinks .tile-supertitle,
.tile-drinks .tile-title {
    color: var(--color-orange);
}


/* DRINKS - Hover */
.tile-drinks:hover,
.tile-drinks.active {
    background-image: url('images/drinklinks.jpg');
    background-size: cover;
    background-position: center;
}

.tile-drinks:hover .tile-block-a,
.tile-drinks.active .tile-block-a {
    opacity: 0;
}

.tile-drinks:hover .tile-block-b,
.tile-drinks.active .tile-block-b {
    opacity: 1;
}

.tile-drinks:hover::before,
.tile-drinks.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* FOOD - Standard */
.tile-food {
    background: var(--color-orange);
}

.tile-food .tile-supertitle,
.tile-food .tile-title {
    color: var(--color-pink);
}


/* FOOD - Hover */
.tile-food:hover,
.tile-food.active {
    background-image: url('images/foodrechts.jpg');
    background-size: cover;
    background-position: center;
}

.tile-food:hover .tile-block-a,
.tile-food.active .tile-block-a {
    opacity: 0;
}

.tile-food:hover .tile-block-b,
.tile-food.active .tile-block-b {
    opacity: 1;
}

.tile-food:hover::before,
.tile-food.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* ===================================
   BEREICH E: ÖFFNUNGSZEITEN
=================================== */

.section-opening-hours {
    position: relative;
    background-image: url('images/oeffner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    padding: 100px 0 0;
    min-height: 800px;
}

.section-opening-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.section-opening-hours .container {
    position: relative;
    z-index: 2;
}

.section-opening-hours .section-title {
    color: var(--color-white);
    text-align: center;
}

.section-opening-hours .title-divider {
    background-color: var(--color-white);
}

.opening-hours {
    max-width: 400px;
    margin: 30px auto 40px;
}

.hours-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    font-size: 30px;
    gap: 25px;
}

.day {
    font-weight: normal;
    font-family: var(--font-body);
    min-width: 35px;
    text-align: right;
}

.time {
    font-weight: normal;
    text-align: left;
    margin-left: 0;
    min-width: 160px;
}

.weather-notice {
    text-align: center;
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.dog-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    max-width: 700px;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
}

.dog-text {
    font-size: 25px;
    line-height: 1.6;
}

.dog-image-wrapper {
    display: block;
    line-height: 0;
    font-size: 0;
    margin-bottom: -5px;
}

.dog-image {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
    height: auto;
    vertical-align: bottom;  /* ← wichtig! */
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease, transform 1s ease;
}

.dog-image.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ===================================
   BEREICH F: WEGBESCHREIBUNG
=================================== */

.section-light .title-divider {
    background-color: var(--color-dark);
}

.section-opening-hours + .section-light {
    padding-top: 0 !important;
}
.address-box {
    background: var(--color-light-gray);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.address-box p {
    margin: 5px 0;
    font-size: 25px;
}

.btn-custom {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 25px;
    display: inline-block;
    transition: 0.3s;
    margin: 20px 0;
}

.btn-custom:hover {
    background: #00B684;
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 182, 132, 0.3);
}

/* ===================================
   GOOGLE MAPS & STREET VIEW OPT-IN
=================================== */

.map-opt-in-container {
    width: 100%;
    max-width: 100%;
    margin: 40px 0;
}

.map-placeholder {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #0B8F6A 0%, #00B684 100%);
    border-radius: 10px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    padding: 40px;
    max-width: 600px;
    width: 90%;
}

.map-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.map-overlay h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.map-overlay p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-notice {
    font-size: 16px !important;
    opacity: 0.9;
}

.privacy-notice a {
    color: var(--color-white);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-notice a:hover {
    opacity: 0.8;
}

.btn-load-map,
.btn-load-streetview {
    background: var(--color-white);
    color: #0B8F6A;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-load-map:hover,
.btn-load-streetview:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-load-map i,
.btn-load-streetview i {
    font-size: 18px;
}

.map-container {
    width: 100%;
    max-width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.streetview-opt-in-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.streetview-placeholder {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 400px;
    background: linear-gradient(135deg, #FD1441 0%, #F0002F 100%);
    border-radius: 10px;
    overflow: hidden;
}

.streetview-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    padding: 40px;
    max-width: 600px;
    width: 90%;
}

.streetview-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.streetview-overlay h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.streetview-overlay p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.streetview-container {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin: 40px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.streetview-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===================================
   BEREICH G: PARTNER
=================================== */

.section-partners {
    background: #000;
    padding: 100px 0;
}

.section-partners .section-title {
    color: var(--color-white);
    text-align: center;
}

.section-partners .title-divider {
    background-color: var(--color-white);
}

.partner-box {
    background: #999999;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: 0.3s;
}

.partner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===================================
   BEREICH H: IMPRESSUM
=================================== */

.section-impressum {
    background: url('images/sand.jpg') center center / cover;
    color: var(--color-white);
    padding: 100px 0;
    position: relative;
}

.section-impressum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.section-impressum .container {
    position: relative;
    z-index: 2;
}

.section-impressum .section-title {
    color: var(--color-white);
}

.section-impressum .title-divider {
    background-color: var(--color-white);
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.impressum-content p,
.impressum-content a {
    font-size: 0.75em;
    line-height: 1.8;
    color: var(--color-white);
}

.impressum-content a:hover {
    color: #00B684;
}

.impressum-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.impressum-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-white);
}

/* ===================================
   MODAL STYLES - CUSTOM (OHNE BOOTSTRAP)
=================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.modal.show {
    background-color: rgba(0, 0, 0, 0.98);
}

.modal-dialog {
    width: 100%;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.modal-fullscreen .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

.modal-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal.show .modal-image {
    opacity: 1;
    transform: scale(1);
}

.modal-close-btn {
    position: fixed;
    top: 30px;
    right: 50px;
    font-size: 70px;
    color: white;
    cursor: pointer;
    z-index: 100000;
    line-height: 0.8;
    font-weight: 300;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.modal-close-btn:hover {
    color: #00B684;
    transform: rotate(90deg) scale(1.2);
}

/* ===================================
   RESPONSIVE STYLES
=================================== */

@media (min-width: 2000px) {
    .hero-center {
        padding-top: 215px;
    }

    .hero-tagline {
        font-size: 100px;
    }
	.tile-text {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .section-opening-hours,
    .section-gallery,
    .section-impressum {
        background-attachment: scroll;
    }
}


@media (min-width: 768px) and (max-width: 1100px) {
    .tile-text {
        font-size: 20px;
        line-height: 1.6;
    }
}



@media (max-width: 992px) {
    .tiles-container {
        flex-direction: column;
    }

    .tile {
        width: 100%;
        height: 600px;
    }

    .tile-content {
        padding: 40px;
    }

    .tile-title {
        font-size: 60px;
    }

    .tile-text {
        font-size: 20px;
    }
    .tile-supertitle {
        font-size: 24px;
    }
    
    .tile-image {
        max-width: 180px;
    }
    .tile-block-a {
        gap: 10px;
    }

.tile-block-b {
        max-width: 95%;
        padding: 0 15px;
    }
}




@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .header-icons-right {
        display: none;
    }

    .mobile-icons-bottom {
        display: flex;
    }

    .logo {
        font-size: 21.6px;
        margin-bottom: 20px;
    }

    .status-image-header {
        max-width: 300px;
    }

    .hero-tagline {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .loading-line {
        font-size: 50px;
        letter-spacing: 4px;
    }

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

    .text-intro,
    .text-content {
        font-size: 20px;
    }

    .gallery-img {
        height: 300px;
    }

    .hours-row {
        font-size: 25px;
        padding: 8px 10px;
    }

.section-light,
.section-dark,
.section-description,
.section-gallery,
.section-partners,
.section-impressum {
    padding: 60px 0;   /* ← section-opening-hours hier raus */
}

.section-opening-hours {
    padding: 60px 0 0;  /* ← kein Abstand unten */
}

.section-opening-hours + .section-light {
    padding-top: 0 !important;
}


    .tile {
        height: 500px;
    }

    .tile-content {
        padding: 30px;
    }

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

    .dog-image {
        max-width: 200px;
    }

    
    .dog-image-wrapper {
        display: block;
        margin-bottom: -5px;
        line-height: 0;
    }

    .map-placeholder,
    .streetview-placeholder {
        height: 350px;
    }

    .map-overlay,
    .streetview-overlay {
        padding: 20px;
    }

    .map-icon,
    .streetview-icon {
        font-size: 40px;
    }

    .map-overlay h3,
    .streetview-overlay h3 {
        font-size: 24px;
    }

    .map-overlay p,
    .streetview-overlay p {
        font-size: 16px;
    }

    .btn-load-map,
    .btn-load-streetview {
        padding: 12px 30px;
        font-size: 16px;
    }

    .map-container,
    .streetview-container {
        height: 300px;
    }

    .impressum-content h2 {
        font-size: 24px;
    }

    .impressum-content h3 {
        font-size: 20px;
    }

    .tile-supertitle {
        font-size: 20px;
    }
    .tile-title {
        font-size: 45px;
    }
    .tile-image {
        max-width: 180px;
    }
    .tile-block-a {
        gap: 8px;
    }
    .tile-block-b {
        width: 90%;
        max-width: 90%;
        padding: 0 15px;
    }
    
    .tile-text {
        font-size: 22px;   /* ← optional: etwas kleiner auf Mobile */
    }
}

@media (max-width: 576px) {
    .hero-tagline {
        font-size: 38px;
        letter-spacing: 2px;
    }

    .status-image-header {
        max-width: 280px;
    }

    .loading-line {
        font-size: 35px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 35px;
    }

    .partner-box {
        height: 100px;
        padding: 20px;
    }

    .hours-row {
        font-size: 24px;
    }

    .day {
        min-width: 30px;
    }

    .time {
        margin-left: 10px;
    }

    .tile {
        height: 450px;
    }

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

    .dog-image {
        max-width: 150px;
    }

    .dog-image-wrapper {
        display: block;
        margin-bottom: -5px;
        line-height: 0;
    }

    .map-placeholder,
    .streetview-placeholder {
        height: 360px;
    }

    .map-overlay h3,
    .streetview-overlay h3 {
        font-size: 18px;
    }

    .map-overlay p,
    .streetview-overlay p {
        font-size: 14px;
    }

    .btn-load-map,
    .btn-load-streetview {
        padding: 10px 25px;
        font-size: 14px;
    }

    .mobile-icons-bottom {
        gap: 20px;
    }

    .mobile-icons-bottom a {
        font-size: 24px;
    }

   .tile-supertitle {
        font-size: 18px;
    }
    .tile-title {
        font-size: 40px;
        letter-spacing: 2px;
    }
    .tile-image {
        max-width: 150px;
    }
    .tile-block-a {
        gap: 6px;
    }
    .tile-block-b {
        width: 95%;
        max-width: 95%;
        padding: 0 10px;
    }
    .tile-text {
        font-size: 22px;
        line-height: 1.6;
    }


}



/* ========================================
   ENGLISH VERSION SPECIFIC STYLES
======================================== */

/* Google Fonts lokal eingebunden (DSGVO-konform) - TTF Format */
@font-face {
    font-family: 'Alpha Slab One';
    src: url('fonts/alphaslabone-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Yatra One';
    src: url('fonts/yatraone-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Domine';
    src: url('fonts/domine-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cedarville Cursive';
    src: url('fonts/cedarvillecursive-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Indie Flower';
    src: url('fonts/indieflower-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ===================================
   LETTER ANIMATION - ENGLISCHE VERSION
=================================== */

.en-version .letter-animation {
    background-color: #0b8f6a;
}

.en-version .loading-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 15px;
    opacity: 0;
    animation: loadingPngFadeIn 0.8s ease-out forwards;
}

.en-version .loading-png {
    width: 250px;
    height: auto;
    opacity: 0;
    transform: translateY(-80px);
    animation: pngDropIn 0.8s ease-out forwards;
}

.en-version .loading-png:nth-child(1) {
    animation-delay: 0.1s;
}

.en-version .loading-png:nth-child(2) {
    animation-delay: 0.2s;
}

.en-version .loading-png:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes pngDropIn {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }
    70% {
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadingPngFadeIn {
    to {
        opacity: 1;
    }
}

/* ===================================
   HERO TAGLINE - ALPHA SLAB ONE
=================================== */

.en-version .hero-tagline {
    font-family: 'Alpha Slab One', sans-serif;
    font-size: 100px;
    font-weight: 400;
}

/* ===================================
   SCROLL INDIKATOR MIT ROTIERENDEM TEXT
=================================== */

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.scroll-text-wrapper {
    position: absolute;
    width: 150px;
    height: 150px;
    animation: rotateText 10s linear infinite;
}

.circular-text {
    width: 100%;
    height: 100%;
}

.circular-text text {
    font-family: 'Indie Flower', cursive;
    font-size: 16px;
    fill: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.scroll-finger {
    position: relative;
    width: 75px;
    height: 75px;
    z-index: 11;
    animation: fingerBounce 2s ease-in-out infinite;
}

@keyframes fingerBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   ÜBERSCHRIFTEN - YATRA ONE
=================================== */

.en-version .section-title,
.en-version .tile-title {
    font-family: 'Yatra One', sans-serif;
    font-weight: 400;
}

/* ===================================
   FLIESSTEXT - DOMINE
=================================== */

.en-version .text-intro,
.en-version .text-content,
.en-version .tile-text,
.en-version .hours-row,
.en-version .weather-notice,
.en-version .dog-text,
.en-version .address-box p,
.en-version .impressum-content {
    font-family: 'Domine', serif;
}

/* ===================================
   SECTION DECORATION PNGs
=================================== */

.section-decoration {
    display: block;
    margin: 0 auto;
    max-width: 75px;
    height: auto;
}

/* ===================================
   KACHELN - 2 BLÖCKE MITTIG-MITTIG (ENGLISH VERSION)
=================================== */

/* Tile Content Container */
.en-version .tile-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    text-align: center;
}

/* BLOCK A: Oberüberschrift + Titel + Divider + PNG (als Gruppe mittig) */
.en-version .tile-block-a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 3;
}

/* BLOCK B: Text alleine mittig */
.en-version .tile-block-b {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 4;
    max-width: 200%;
    padding: 0 20px;
}

/* Elemente in Block A */
.en-version .tile-supertitle {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 32px;
    color: inherit;
    white-space: nowrap;
    margin: 0;
}

.en-version .tile-title {
    font-family: 'Yatra One', sans-serif;
    font-size: 80px;
    letter-spacing: 4px;
    white-space: nowrap;
    margin: 0;
}

.en-version .tile-divider {
    display: block;
    width: 90px;
    height: 2px;
    margin: 0;
}

.en-version .tile-image {
    max-width: 200px;
    width: auto;
    height: auto;
    margin: 10px 0 0 0;
}

/* Element in Block B */
.en-version .tile-text {
    font-family: 'Domine', serif;
    font-size: 25px;
    line-height: 1.8;
    color: #ffffff !important;
    margin: 0;
    white-space: normal;
}

/* DRINKS Kachel - Standard: Gelb auf Grün */
.en-version .tile-drinks {
    background: #0B8F6A;
}

.en-version .tile-drinks .tile-supertitle,
.en-version .tile-drinks .tile-title {
    color: #FFA414;
}

.en-version .tile-drinks .tile-divider {
    background-color: #FFA414;
}

/* FOOD Kachel - Standard: Rot auf Gelb */
.en-version .tile-food {
    background: #FFA414;
}

.en-version .tile-food .tile-supertitle,
.en-version .tile-food .tile-title {
    color: #F0002F;
}

.en-version .tile-food .tile-divider {
    background-color: #F0002F;
}

/* HOVER-EFFEKT: Bild-Hintergrund */
.en-version .tile-drinks:hover,
.en-version .tile-drinks.active {
    background-image: url('images/drinks_links.jpg');
    background-size: cover;
    background-position: center;
}

.en-version .tile-food:hover,
.en-version .tile-food.active {
    background-image: url('images/food_rechts.jpg');
    background-size: cover;
    background-position: center;
}

/* MIT Hover: Block A verschwindet, Block B erscheint */
.en-version .tile-drinks:hover .tile-block-a,
.en-version .tile-drinks.active .tile-block-a,
.en-version .tile-food:hover .tile-block-a,
.en-version .tile-food.active .tile-block-a {
    opacity: 0;
}

.en-version .tile-drinks:hover .tile-block-b,
.en-version .tile-drinks.active .tile-block-b,
.en-version .tile-food:hover .tile-block-b,
.en-version .tile-food.active .tile-block-b {
    opacity: 1;
}

/* Dunkler Overlay beim Hover */
.en-version .tile-drinks:hover::before,
.en-version .tile-drinks.active::before,
.en-version .tile-food:hover::before,
.en-version .tile-food.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* ===================================
   KORREKTUREN FÜR ENGLISCHE VERSION
=================================== */

/* Job Icon auf 30px */
.en-version .job-icon {
    width: 30px !important;
    height: auto;
}

/* Mobile Icons in Desktop NICHT anzeigen */
.en-version .mobile-icons-bottom {
    display: none !important;
}

/* Hund-Bild unter Text */
.en-version .dog-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.en-version .dog-section img {
    order: 2;
    margin-top: 20px;
}

.en-version .dog-section .dog-text {
    order: 1;
}

/* Mobile Responsive Anpassungen */
@media (max-width: 768px) {
    .en-version .mobile-icons-bottom {
        display: flex !important;
    }

    .en-version .loading-images {
        gap: 20px;
    }

    .en-version .loading-png {
        width: 150px;
    }

    .en-version .hero-tagline {
        font-size: 60px;
    }

    .scroll-indicator {
        width: 100px;
        height: 100px;
        bottom: 120px;
    }

    .scroll-text-wrapper {
        width: 100px;
        height: 100px;
    }

    .circular-text text {
        font-size: 12px;
    }

    .scroll-finger {
        width: 50px;
        height: 50px;
    }

    .en-version .tile-supertitle {
        font-size: 24px;
    }

    .en-version .tile-title {
        font-size: 50px;
    }

    .en-version .tile-divider {
        width: 70px;
    }

    .en-version .tile-image {
        max-width: 150px;
    }

    .en-version .tile-text {
        font-size: 20px;
        padding: 0 30px;
    }

    .en-version .tile-block-b {
        padding: 0 30px;
    }
}

@media (max-width: 576px) {
    .en-version .loading-images {
        gap: 15px;
    }

    .en-version .loading-png {
        width: 100px;
    }

    .en-version .hero-tagline {
        font-size: 42px;
    }

    .scroll-indicator {
        width: 80px;
        height: 80px;
        bottom: 130px;
    }

    .scroll-text-wrapper {
        width: 80px;
        height: 80px;
    }

    .circular-text text {
        font-size: 10px;
    }

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

    .en-version .tile-supertitle {
        font-size: 20px;
    }

    .en-version .tile-title {
        font-size: 40px;
    }

    .en-version .tile-divider {
        width: 60px;
    }

    .en-version .tile-image {
        max-width: 120px;
    }

    .en-version .tile-text {
        font-size: 18px;
        padding: 0 20px;
    }

    .en-version .tile-block-b {
        padding: 0 20px;
    }
}
