/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../assets/fonts/inter-v19-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/inter-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../assets/fonts/inter-v19-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../assets/fonts/inter-v19-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/inter-v19-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


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

:root {
    /* Wine Color Scheme */
    --wine-main: #7B2D43;
    --wine-bright: #A03655;
    --wine-light: #F4E8EC;
    --wine-text: #4A1626;
    --wine-accent: #D4A574;
    
    /* Neutrals */
    --neutral-black: #1A1A1A;
    --neutral-dark: #333333;
    --neutral-gray: #666666;
    --neutral-light: #E5E5E5;
    --neutral-white: #FFFFFF;
    --neutral-off-white: #FAFAFA;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--neutral-white);
    color: var(--neutral-dark);
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--wine-main);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    gap: 60px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--neutral-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--wine-main);
}

.nav-link.active {
    color: var(--wine-main);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--wine-main);
    color: white;
}

.btn-primary:hover {
    background: var(--wine-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 45, 67, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--wine-main);
    border: 2px solid var(--wine-main);
}

.btn-secondary:hover {
    background: var(--wine-main);
    color: white;
}

.lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--neutral-light);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.lang-current:hover {
    background: var(--wine-light);
}

.flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
}

.flag-de {
    background: linear-gradient(to bottom, #000 0%, #000 33%, #DD0000 33%, #DD0000 66%, #FFCE00 66%);
}

.flag-en {
    background: #012169;
    position: relative;
    overflow: hidden;
}

.flag-en::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, transparent 42%, white 42%, white 58%, transparent 58%),
        linear-gradient(to right, transparent 42%, white 42%, white 58%, transparent 58%);
}

.flag-en::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, transparent 46%, #C8102E 46%, #C8102E 54%, transparent 54%),
        linear-gradient(to right, transparent 46%, #C8102E 46%, #C8102E 54%, transparent 54%);
}

.flag-fr {
    background: linear-gradient(to right, #002395 0%, #002395 33%, white 33%, white 66%, #ED2939 66%);
}

.flag-nl {
    background: linear-gradient(to bottom, #AE1C28 0%, #AE1C28 33%, white 33%, white 66%, #21468B 66%);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 160px;
    display: none;
    overflow: hidden;
}

.lang-switcher.active .lang-dropdown {
    display: block;
}

.lang-option {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--neutral-dark);
    transition: background 0.2s ease;
}

.lang-option:hover {
    background: var(--wine-light);
}

.lang-option.active {
    background: var(--wine-light);
    color: var(--wine-main);
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neutral-dark);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: none;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: var(--neutral-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--neutral-light);
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--wine-main);
}

.mobile-nav a.active {
    color: var(--wine-main);
}

.mobile-book-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--wine-main);
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
}

/* Language Mobile Overlay */
.lang-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: none;
    z-index: 1001;
}

.lang-overlay.active {
    display: block;
}

.lang-overlay-header {
    padding: 20px;
    border-bottom: 1px solid var(--neutral-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-overlay-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--wine-text);
}

.lang-close {
    font-size: 28px;
    cursor: pointer;
    color: var(--neutral-gray);
    line-height: 1;
}

.lang-options-mobile {
    padding: 20px;
}

.lang-option-mobile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    text-decoration: none;
    color: var(--neutral-dark);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.lang-option-mobile:hover {
    background: var(--wine-light);
}

.lang-option-mobile.active {
    background: var(--wine-light);
    color: var(--wine-main);
    font-weight: 600;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(123, 45, 67, 0.85) 0%, rgba(160, 54, 85, 0.85) 100%),
                var(--wine-light);
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-hero-content {
    text-align: center;
    color: white;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.breadcrumb {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--wine-text);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--neutral-gray);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--neutral-gray);
}

/* Footer */
.footer {
    background: var(--neutral-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav .btn-primary:not(.mobile-book-btn) {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .lang-current span:last-child {
        display: none;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .flag {
        width: 16px;
        height: 12px;
    }
    
    .mobile-menu-overlay {
        top: 60px;
    }
    
    .page-hero {
        height: 30vh;
        margin-top: 60px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 14px;
    }
    
    .footer-bottom {
        font-size: 12px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
  .btn-primary:not(.mobile-book-btn) {
      display: block !important;
      margin-top: 12px;
  }
  
  .room-pricing, .room-pricing > * {
    display: block !important;
  }
}




/**
 * Cookie-Banner Styles
 * DSGVO-konformes Design mit Corporate Color #A03655
 */

/* ==========================================================================
   Cookie Banner Base Styles
   ========================================================================== */

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* ==========================================================================
   Cookie Text Content
   ========================================================================== */

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    color: #A03655;
    font-size: 18px;
    font-weight: bold;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #f0f0f0;
}

.cookie-text a {
    color: #A03655;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #c54470;
    text-decoration: none;
}

/* ==========================================================================
   Cookie Buttons
   ========================================================================== */

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 120px;
    text-align: center;
    outline: none;
    position: relative;
    overflow: hidden;
}

.cookie-btn:focus {
    outline: 2px solid #A03655;
    outline-offset: 2px;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cookie-btn:hover::before {
    left: 100%;
}

/* Accept Button */
.cookie-btn-accept {
    background-color: #A03655;
    color: white;
    box-shadow: 0 2px 8px rgba(160, 54, 85, 0.3);
}

.cookie-btn-accept:hover {
    background-color: #8a2d48;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(160, 54, 85, 0.4);
}

.cookie-btn-accept:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(160, 54, 85, 0.3);
}

/* Decline Button */
.cookie-btn-decline {
    background-color: transparent;
    color: white;
    border: 2px solid #666;
}

.cookie-btn-decline:hover {
    background-color: #666;
    border-color: #888;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 102, 102, 0.3);
}

.cookie-btn-decline:active {
    transform: translateY(0);
    background-color: #555;
}

/* ==========================================================================
   Cookie Settings Button (Floating)
   ========================================================================== */

.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #A03655;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.cookie-settings-btn:hover {
    background-color: #8a2d48;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(160, 54, 85, 0.4);
}

.cookie-settings-btn:focus {
    outline: 2px solid #A03655;
    outline-offset: 3px;
}

.cookie-settings-btn:active {
    transform: scale(1.05);
}

#viatoCbe {
  display: none;
}

/* ==========================================================================
   Animation Effects
   ========================================================================== */

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#cookieBanner[style*="block"] {
    animation: slideUpFadeIn 0.4s ease-out;
}

/* Pulsing effect for settings button */
@keyframes pulse {
    0% {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 2px 20px rgba(160, 54, 85, 0.5);
    }
    100% {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
}

.cookie-settings-btn {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    #cookieBanner {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text h3 {
        font-size: 16px;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
        gap: 8px;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .cookie-settings-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    #cookieBanner {
        padding: 12px;
    }
    
    .cookie-content {
        gap: 12px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .room-thumb {
      width: 60px !important;
      height: 60px !important;  
    }
    
    .room-thumbnails {
      gap: 8px;
    }
}

/* ==========================================================================
   Dark Mode Support
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    #cookieBanner {
        background: rgba(20, 20, 20, 0.95);
        border-top: 1px solid #333;
    }
    
    .cookie-text p {
        color: #e0e0e0;
    }
    
    .cookie-btn-decline {
        border-color: #555;
        color: #e0e0e0;
    }
    
    .cookie-btn-decline:hover {
        background-color: #555;
        border-color: #777;
    }
}

/* ==========================================================================
   High Contrast Mode Support
   ========================================================================== */

@media (prefers-contrast: high) {
    #cookieBanner {
        background: black;
        border-top: 2px solid white;
    }
    
    .cookie-text h3 {
        color: #ff6b9d;
    }
    
    .cookie-btn-accept {
        background-color: #ff6b9d;
        border: 2px solid white;
    }
    
    .cookie-btn-decline {
        border: 2px solid white;
        background-color: transparent;
    }
}

/* ==========================================================================
   Reduced Motion Support
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .cookie-btn,
    .cookie-settings-btn,
    .cookie-text a {
        transition: none;
    }
    
    .cookie-btn::before {
        display: none;
    }
    
    .cookie-settings-btn {
        animation: none;
    }
    
    #cookieBanner[style*="block"] {
        animation: none;
    }
}


/* :TODO: kann später wieder weg */
.lang-switcher {
  display: none !important;
}