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

@keyframes colorShift {
    0% { filter: grayscale(0%); }
    25% { filter: grayscale(100%); }
    50% { filter: grayscale(0%); }
    75% { filter: grayscale(100%); }
    100% { filter: grayscale(0%); }
}



/* Main Layout Initial State */
.main-layout {
    display: none;
    opacity: 1;
    transform: scale(1);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Restaurant Items and Center Brand Initial State */
.restaurant-item,
.center-brand {
    opacity: 0;
    transform: translateY(80px) scale(0.85);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(2px);
}

/* Final state class for when animations complete */
.restaurant-item.animated,
.center-brand.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

/* Enhanced Element Bounce Animation */
@keyframes elementBounce {
    0% {
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
    25% {
        transform: translateY(-15px) scale(1.03);
        filter: blur(0px);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
        filter: blur(0px);
    }
    75% {
        transform: translateY(-3px) scale(1.01);
        filter: blur(0px);
    }
    100% {
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

/* Smooth entrance animation for individual elements */
@keyframes smoothEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
        filter: blur(3px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

/* Staggered entrance animation */
@keyframes staggeredEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(2px);
    }
    30% {
        opacity: 0.5;
        transform: translateY(-5px) scale(1.01);
        filter: blur(1px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-2px) scale(1.005);
        filter: blur(0.5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #adadad;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #DAAA5E, #B8945A);
    border-radius: 4px;
}



/* Main Layout - Horizontal Structure */
.main-layout {
    display: flex;
    min-height: 100vh;
    position: relative;
    flex-direction: row;
    overflow: hidden;
}

/* Center Brand */
.center-brand {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: #000;
    position: relative;
    animation: colorShift 20s ease-in-out infinite;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity, filter, box-shadow;
}

.brand-content {
    text-align: center;
    max-width: 500px;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-logo {
    max-width: 80%;
    height: auto;
    margin: auto;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, filter;
}

.brand-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #DAAA5E;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, text-shadow, color;
}

.brand-subtitle {
    font-size: 1rem;
    color: #ccc;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, color;
}

.brand-description {
    margin-bottom: 30px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-description p {
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, color;
}

.brand-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(218, 170, 94, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-links .contact-link {
    padding: 0;
    border: none;
    background: transparent;
    color: #adadad;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
}

.brand-links .contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #DAAA5E;
    transition: width 0.3s ease;
}

.brand-links .contact-link:hover {
    background: transparent;
    color: #DAAA5E;
}

.brand-links .contact-link:hover::after {
    width: 100%;
}

.contact-link, .reservation-link {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, background, color, box-shadow;
}

.contact-link {
    background: transparent;
    color: #DAAA5E;
    border: 2px solid #DAAA5E;
}

.contact-link:hover {
    background: #DAAA5E;
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(218, 170, 94, 0.3);
}

.reservation-link {
    background: linear-gradient(45deg, #DAAA5E, #B8945A);
    color: #000;
}

.reservation-link:hover {
    background: linear-gradient(45deg, #B8945A, #DAAA5E);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(218, 170, 94, 0.4);
}

/* Restaurant Items */
.restaurant-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 100vh;
    animation: colorCycle 6s ease-in-out infinite;
    will-change: transform, opacity, filter;
}

.restaurant-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(218, 170, 94, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    pointer-events: none;
}

.restaurant-item:hover::before {
    opacity: 1;
}

.restaurant-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(218, 170, 94, 0.3);
    z-index: 10;
    animation-play-state: paused;
}

.restaurant-item.hovered {
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(218, 170, 94, 0.4);
    z-index: 10;
    animation-play-state: paused;
}

.restaurant-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, filter;
}

.restaurant-item:hover .restaurant-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.2) contrast(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.restaurant-item:hover .image-overlay {
    opacity: 0.3;
    background: linear-gradient(135deg, rgba(218, 170, 94, 0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.restaurant-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    will-change: transform, background;
}

.restaurant-item:hover .restaurant-info {
    transform: translateY(-15px);
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    backdrop-filter: blur(10px);
    margin-bottom: -20px;
}

.restaurant-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
    transition: all 0.5s ease;
}

/* Riviera am Rhein and Salon Saigon logos pulse */
.restaurant-logo.riviera-logo,
.restaurant-logo.saigon-logo {
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.logo-pulse {
    animation: logoPulse 3s ease-in-out infinite;
}

.logo-pulse-1 {
    animation: logoPulse1 4s ease-in-out infinite;
    animation-delay: 0s;
}

.logo-pulse-2 {
    animation: logoPulse2 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

.logo-pulse-3 {
    animation: logoPulse3 4.5s ease-in-out infinite;
    animation-delay: 2s;
}

.logo-pulse-4 {
    animation: logoPulse4 3.8s ease-in-out infinite;
    animation-delay: 0.5s;
}

.logo-pulse-5 {
    animation: logoPulse5 4.2s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes logoPulse1 {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.15);
        filter: brightness(1.1);
    }
}

@keyframes logoPulse2 {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.18);
        filter: brightness(1.15);
    }
}

@keyframes logoPulse3 {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.12);
        filter: brightness(1.08);
    }
}

@keyframes logoPulse4 {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.16);
        filter: brightness(1.12);
    }
}

@keyframes logoPulse5 {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.14);
        filter: brightness(1.1);
    }
}

.restaurant-item:hover .restaurant-logo {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 10px 25px rgba(218, 170, 94, 0.6));
}

.restaurant-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #DAAA5E;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    transition: all 0.5s ease;
}

.restaurant-item:hover .restaurant-info h3 {
    transform: translateY(-5px);
    text-shadow: 0 5px 20px rgba(218, 170, 94, 0.8);
    color: #cccccc;
}

.restaurant-info p {
    font-size: 1rem;
    color: #adadad;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    transition: all 0.5s ease;
}

.restaurant-item:hover .restaurant-info p {
    transform: translateY(-3px);
    color: #fff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.9);
}

.visit-link {
    display: inline-block;
    background: linear-gradient(45deg, #DAAA5E, #B8945A);
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    will-change: transform, background, box-shadow;
}

.visit-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visit-link:hover::before {
    left: 100%;
}

.visit-link:hover {
    background: linear-gradient(45deg, #887a29, #DAAA5E);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(218, 170, 94, 0.6);
    color: #000;
}

.coming-soon {
    display: inline-block;
    background: rgba(51, 51, 51, 0.8);
    color: #DAAA5E;
    padding: 10px 25px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid rgba(218, 170, 94, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    will-change: transform, background, box-shadow;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 170, 94, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.restaurant-item:hover .coming-soon::before {
    left: 100%;
}

.restaurant-item:hover .coming-soon {
    background: rgba(218, 170, 94, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(218, 170, 94, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 40px 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(45deg, transparent, #DAAA5E, transparent);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #DAAA5E;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #DAAA5E;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.contact-info {
    color: #ccc;
    font-size: 0.9rem;
}

.contact-info a {
    color: #DAAA5E;
    text-decoration: none;
    font-weight: 600;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    max-width: 200px;
    animation: loadingPulse 2s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid rgba(218, 170, 94, 0.3);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.close {
    color: #DAAA5E;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: all 0.3s ease;
}

.close:hover,
.close:focus {
    color: #fff;
    transform: scale(1.1);
}

.impressum-content {
    color: #adadad;
    line-height: 1.6;
}

.impressum-content h2 {
    font-family: 'Playfair Display', serif;
    color: #DAAA5E;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid rgba(218, 170, 94, 0.3);
    padding-bottom: 15px;
}

.impressum-content h3 {
    font-family: 'Playfair Display', serif;
    color: #DAAA5E;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.impressum-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.impressum-content strong {
    color: #DAAA5E;
    font-weight: 600;
}

.impressum-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(45deg, transparent, rgba(218, 170, 94, 0.3), transparent);
    margin: 30px 0;
}

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

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

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #DAAA5E, #B8945A);
    border-radius: 4px;
}

/* Impressum Page Styles */
.page-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(218, 170, 94, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

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

.home-link {
    color: #DAAA5E;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.home-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #DAAA5E;
    transition: width 0.3s ease;
}

.home-link:hover {
    color: #fff;
}

.home-link:hover::after {
    width: 100%;
}

.impressum-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding-top: 80px;
    padding-bottom: 40px;
}

.impressum-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.impressum-page .impressum-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border: 1px solid rgba(218, 170, 94, 0.3);
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.impressum-page .impressum-content h1 {
    font-family: 'Playfair Display', serif;
    color: #DAAA5E;
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 2px solid rgba(218, 170, 94, 0.3);
    padding-bottom: 20px;
}

.impressum-page .impressum-content h2 {
    font-family: 'Playfair Display', serif;
    color: #DAAA5E;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.impressum-page .impressum-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.impressum-page .impressum-content strong {
    color: #DAAA5E;
    font-weight: 600;
}

.impressum-page .impressum-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(45deg, transparent, rgba(218, 170, 94, 0.3), transparent);
    margin: 40px 0;
}

.impressum-page .impressum-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.impressum-page .impressum-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.impressum-page .impressum-content h3 {
    font-family: 'Playfair Display', serif;
    color: #DAAA5E;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-layout {
        flex-direction: column;
    }
    
    .restaurant-item {
        min-height: 400px;
    }
    
    .center-brand {
        order: -1;
        flex: none;
        min-height: 400px;
    }

    .restaurant-item {
        margin-top: -10px;
    }

    .restaurant-logo {
        margin-bottom: -10px;
    }
}



@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
    }
    
    .restaurant-item {
        min-height: 250px;
    }
    
    .center-brand {
        padding: 40px 20px;
    }
    
    .brand-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .brand-links {
        flex-direction: column;
        align-items: center;
    }
    
    /* Modal responsive styles */
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
        max-height: 85vh;
    }
    
    .impressum-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .impressum-content h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
    }
    
    .impressum-content p {
        font-size: 0.9rem;
    }
    
    .close {
        font-size: 24px;
        top: 10px;
        right: 15px;
    }
    
    /* Impressum page responsive styles */
    .impressum-container {
        padding: 0 20px;
    }
    
    .impressum-page .impressum-content {
        padding: 20px;
    }
    
    .impressum-page .impressum-content h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .impressum-page .impressum-content h2 {
        font-size: 1.3rem;
        margin: 25px 0 10px 0;
    }
    
    .impressum-page .impressum-content p {
        font-size: 0.95rem;
    }
    
    .nav-container {
        padding: 0 20px;
    }
} 