/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-btn i {
    font-size: 14px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
    border-radius: 8px;
    margin: 4px;
}

.language-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

.language-option.active {
    background: #ffd700;
    color: #333;
    font-weight: 600;
}

.language-option span {
    font-size: 1.2rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-background video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -3;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -3;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.motto {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

/* Verhindere horizontales Scrollen */
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffd700;
}

/* Rooms Section */
.rooms-section {
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.room-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.room-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.gallery-link {
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #ffd700;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(5px);
    font-size: 14px;
}

.gallery-link:hover {
    background: #ffd700;
    color: #2c3e50;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.room-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #adb5bd;
}

.room-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.room-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.room-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.room-number {
    background: #ffd700;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.room-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.book-button {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 15px;
}

.book-button:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

/* Menu Section */
.menu-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    padding: 80px 0;
    color: white;
}

.menu-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-category {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-category:hover::before {
    transform: scaleX(1);
}

.menu-category:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
}

.menu-category h3 {
    color: #ffd700;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    padding-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.menu-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-category li {
    color: #e8f4fd;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
    line-height: 1.5;
    padding-right: 10px;
}

.menu-category li::before {
    content: '• ';
    color: #ffd700;
    font-weight: bold;
}

.menu-category li:last-child {
    border-bottom: none;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .menu-category {
        padding: 25px;
        border-radius: 15px;
    }
    
    .menu-category h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .menu-category li {
        font-size: 1rem;
        padding: 10px 0;
    }
    
    .menu-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .menu-category {
        padding: 20px;
    }
    
    .menu-category h3 {
        font-size: 1.3rem;
    }
    
    .menu-category li {
        font-size: 0.95rem;
        padding: 8px 0;
    }
}

.menu-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
}

.menu-item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.menu-item-content p {
    color: #ecf0f1;
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-description {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-description p {
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 0;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
}

/* Booking Section */
.booking-section {
    background: #f8f9fa;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.submit-button {
    width: 100%;
    background: #ffd700;
    color: #333;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.submit-button:hover {
    background: #ffed4e;
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 80px 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    text-align: center;
    align-items: center;
}

.contact-info-section {
    text-align: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    order: 1;
    width: 100%;
    max-width: 800px;
}

.contact-form-section {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    order: 2;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.map-section {
    width: 80%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Map Section Container */
.map-section-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0;
    margin-top: 0;
}

.map-section-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Maps */
@media (max-width: 768px) {
    .map-section {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .map-section iframe {
        height: 350px;
    }
    
    .map-section-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .map-section iframe {
        height: 300px;
    }
    
    .map-section-container h2 {
        font-size: 1.8rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-color: #ffd700;
}

.contact-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    color: #e6c200;
}

.contact-item h3 {
    color: #000000;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-item p,
.contact-item a {
    color: #000000;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-item a:hover {
    color: #ffd700;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.opening-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    flex-direction: column;
}

.day-name {
    color: #000000;
    font-weight: bold;
    font-size: 0.9rem;
}

.hours {
    color: #000000;
    font-weight: bold;
    font-size: 0.9rem;
}

.closed {
    color: #dc3545;
    font-style: italic;
}

.social-media {
    margin-top: 20px;
}

.social-media h3 {
    margin-bottom: 15px;
    color: #333;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.twitter { background: #000000; }
.social-link.linkedin { background: #0077b5; }
.social-link.youtube { background: #ff0000; }
.social-link.tiktok { background: #000000; }
.social-link.whatsapp { background: #25d366; }
.social-link.telegram { background: #0088cc; }
.social-link.viber { background: #7360f2; }

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    text-align: center;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: center;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.language-selector select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-selector select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.language-selector select option {
    background: #2c3e50;
    color: white;
    padding: 8px;
}

/* Responsive Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 10px;
    }
    
    .language-selector select {
        font-size: 12px;
        padding: 6px 8px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        margin-left: 5px;
    }
    
    .language-selector select {
        font-size: 11px;
        padding: 4px 6px;
        min-width: 80px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
        display: flex;
  flex-direction: column;
  align-items: center;
}

/* Success/Error Messages */
.message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
} 

/* Food Gallery Styles */
.food-gallery-section {
    margin-top: 50px;
    text-align: center;
}

.food-gallery-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffd700;
}

.food-gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.food-gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.food-gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.food-gallery-grid::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

.food-gallery-grid::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

.food-gallery-item {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.food-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Facility Gallery Styles */
.facilities-section {
    background: #f8f9fa;
}

.facility-gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    margin-top: 50px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.facility-gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.facility-gallery-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.facility-gallery-grid::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

.facility-gallery-grid::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

.facility-gallery-item {
    flex: 0 0 350px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.facility-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .food-gallery-item {
        flex: 0 0 250px;
        height: 170px;
    }
    
    .facility-gallery-item {
        flex: 0 0 280px;
        height: 240px;
    }
    
    .food-gallery-grid,
    .facility-gallery-grid {
        gap: 15px;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .food-gallery-item {
        flex: 0 0 200px;
        height: 140px;
    }
    
    .facility-gallery-item {
        flex: 0 0 220px;
        height: 192px;
    }
    
    .food-gallery-grid,
    .facility-gallery-grid {
        gap: 10px;
        padding: 10px 0;
    }
} 

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        padding-top: 50px;
        gap: 0;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 20px 0; }
    .nav-menu a { display: block; padding: 15px 20px; font-size: 1.2rem; border-radius: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .nav-menu a:hover { background: rgba(255, 215, 0, 0.2); color: #ffd700; }
    .nav-container { padding: 0 15px; }
    .nav-logo h2 { font-size: 1.3rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .motto { font-size: 1.1rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-content { gap: 30px; }
    .contact-info-section { padding: 30px 20px; }
    .contact-form-section { max-width: 100%; padding: 0 20px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    /* Größere Bilder für Mobile */
    .food-gallery-item { flex: 0 0 300px; height: 280px; }
    .facility-gallery-item { flex: 0 0 320px; height: 350px; }
    .food-gallery-grid, .facility-gallery-grid { gap: 20px; padding: 20px 0; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .booking-form { padding: 20px; }
    .room-card { margin: 0 10px; }
    /* Navbar für sehr kleine Bildschirme */
    .nav-container { padding: 0 10px; height: 60px; }
    .nav-logo h2 { font-size: 1.1rem; }
    .hamburger span { width: 22px; height: 2px; }
    .nav-menu { top: 60px; height: calc(100vh - 60px); }
    .nav-menu a { padding: 12px 15px; font-size: 1rem; }
    /* Noch größere Bilder für sehr kleine Bildschirme */
    .food-gallery-item { flex: 0 0 280px; height: 260px; }
    .facility-gallery-item { flex: 0 0 300px; height: 320px; }
    .food-gallery-grid, .facility-gallery-grid { gap: 15px; padding: 15px 0; }
} 

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
        left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 900px;
    max-height: 96vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: #333;
    color: white;
        padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #ffd700;
}

.modal-body {
    padding: 30px;
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.modal-gallery-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.modal-gallery-item img,
.modal-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.modal-gallery-item video {
    background: #000;
}

.video-item {
    position: relative;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

.play-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.play-button i {
    color: #333;
    font-size: 24px;
    margin-left: 4px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        margin: 5% auto;
    }
    
    .modal-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-gallery-item img {
        height: 200px;
    }
    
    .modal-body {
        padding: 20px;
    }
} 

/* Mobile Contact Floating Button */
.mobile-contact-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.mobile-contact-fab.show {
    opacity: 1;
    transform: translateY(0);
}

.fab-button {
    width: 60px;
        height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2c3e50;
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.fab-button:active {
    transform: scale(0.95);
}

.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 140px;
}

.contact-options.show {
    display: flex;
    animation: slideIn 0.3s ease;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 50px;
    min-height: 50px;
}

.contact-option:hover {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-option.phone {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-option.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-option.viber {
    background: linear-gradient(135deg, #7360f2, #5b4bc4);
}

.contact-option.email {
    background: linear-gradient(135deg, #ea4335, #d93025);
}

.contact-option i {
    font-size: 24px;
    text-align: center;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
    to {
    opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Show FAB only on mobile devices */
@media (max-width: 768px) {
    .mobile-contact-fab {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .fab-button {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .contact-options {
        min-width: 130px;
        padding: 12px;
    }
    
    .contact-option {
        padding: 10px 12px;
        font-size: 13px;
    }
} 

/* Menu Main Categories */
.menu-main-category {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.menu-main-title {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.menu-main-title:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.menu-main-title i:first-child {
    margin-right: 10px;
    font-size: 1.2rem;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.menu-main-category.active .toggle-icon {
    transform: rotate(180deg);
}

.menu-subcategories {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
    background: rgba(44, 62, 80, 0.7);
    opacity: 0;
    visibility: hidden;
}

.menu-main-category.active .menu-subcategories {
    max-height: 5000px;
    padding: 20px 0;
    opacity: 1;
    visibility: visible;
}

/* Updated Menu Category Styles */
.menu-category {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.menu-category:last-child {
    border-bottom: none;
}

.menu-category h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    font-weight: 600;
    display: block;
}

.menu-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.menu-category li {
    color: #e8f4fd;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    line-height: 1.5;
    padding-right: 10px;
    display: block;
    opacity: 1;
    visibility: visible;
}

.menu-category li:last-child {
    border-bottom: none;
}

.menu-category li::before {
    content: '• ';
    color: #ffd700;
    font-weight: bold;
} 

.facility-video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.facility-video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.facility-video-container {
    position: relative;
    cursor: pointer;
}

.facility-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: background 0.3s ease;
}

.facility-video-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

.facility-play-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.facility-play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.facility-play-button i {
    color: #333;
    font-size: 30px;
    margin-left: 4px;
} 

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #666;
    margin: 0;
} 

/* Events Section Styles */
.events-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.events-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-types {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}

.event-types > .event-type:not(:nth-child(n+4)) {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    flex-direction: column;
    justify-content: center;
}

.event-types-expandable {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    animation: slideDown 0.3s ease-out;
}

.event-types-expandable.show {
    display: grid;
}

.event-toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.event-toggle-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.event-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.event-toggle-btn .toggle-icon {
    transition: transform 0.3s ease;
}

.event-toggle-btn.expanded .toggle-icon {
    transform: rotate(180deg);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-type {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.event-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ffd700;
}

.event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.event-icon i {
    font-size: 35px;
    color: #333;
}

.event-type h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.event-type p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.events-gallery {
    margin-top: 60px;
    position: relative;
}

.gallery-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.gallery-nav-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.gallery-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.gallery-nav-btn i {
    color: #333;
    font-size: 18px;
}

.gallery-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.events-gallery h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2rem;
    font-weight: 600;
}

.events-gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ffd700 #f1f1f1;
}

.events-gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.events-gallery-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.events-gallery-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 10px;
}

.events-gallery-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.event-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 0 0 300px;
    height: 250px;
}

.event-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.event-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.3s ease;
    transform: scale(1.13);
    border-radius: 15px;
    filter: brightness(1.02) contrast(1.05);
}

.event-gallery-item:hover img {
    transform: scale(1.18);
}



/* Responsive Design für Events */
@media (max-width: 768px) {
    .events-section {
        padding: 60px 0;
    }
    
    .events-section h2 {
        font-size: 2rem;
    }
    
    .event-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-type {
        padding: 30px 20px;
    }
    
    .event-icon {
        width: 60px;
        height: 60px;
    }
    
    .event-icon i {
        font-size: 25px;
    }
    
    .events-gallery-grid {
        gap: 15px;
        padding: 15px 5px;
    }
    
    .event-gallery-item {
        flex: 0 0 280px;
        height: 200px;
    }
    
    .event-gallery-item img {
        transform: scale(1.10);
    }
    
    .event-gallery-item:hover img {
        transform: scale(1.15);
    }
    
    .gallery-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .gallery-nav-btn i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .events-section h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .event-type h3 {
        font-size: 1.2rem;
    }
    
    .event-type p {
        font-size: 0.9rem;
    }
} 