/* =============================================================================
   FONT DECLARATIONS
   ============================================================================= */

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../assets/fonts/inter-v19-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../assets/fonts/inter-v19-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../assets/fonts/inter-v19-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../assets/fonts/inter-v19-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    src: url('../assets/fonts/playfair-display-v39-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    src: url('../assets/fonts/playfair-display-v39-latin-700.woff2') format('woff2');
}

/* =============================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================================= */

:root {
    /* Brand Colors */
    --primary-red: #D4AF37;
    --primary-black: #111;
    --primary-white: #fff;
    
    /* Dark Theme Colors */
    --bg-primary: #1a1a1a;
    --bg-secondary: #222;
    --bg-tertiary: #2a2a2a;
    --bg-soft: #1f1f1f;
    
    /* Text Colors */
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-muted: #888;
    
    /* UI Elements */
    --border-radius: 8px;
    --border-radius-lg: 8px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* =============================================================================
   RESET AND BASE STYLES
   ============================================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-black);
    font-size: 16px;
    overflow-x: hidden;
    opacity: 0;
    animation: siteInitialFadeIn 1s ease-out 0.2s forwards;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

a, a[href^="tel"], a[href^="tel"]:link, a[href^="tel"]:visited {
    color: var(--text-primary);
    text-decoration: underline;
}

/* =============================================================================
   SCROLLBAR STYLING
   ============================================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}
/* =============================================================================
   KEYFRAME ANIMATIONS
   ============================================================================= */

@keyframes siteInitialFadeIn {
    from {
        opacity: 0;
        background-color: var(--primary-black);
    }
    to {
        opacity: 1;
        background-color: var(--bg-primary);
    }
}

@keyframes headerFadeToTransparent {
    from {
        background: var(--primary-black);
    }
    to {
        background: transparent;
    }
}

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

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

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

@keyframes wavyDots {
    0% {
        background-position: 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, 50% 50%;
    }
}

@keyframes wavyDotsAlt {
    0% {
        background-position: 100% 100%, 50% 50%;
    }
    100% {
        background-position: 0% 0%, 0% 0%;
    }
}

/* =============================================================================
   HEADER NAVIGATION
   ============================================================================= */

header {
    background: var(--primary-black);
    border-bottom: none;
    padding: 1.2rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    animation: headerFadeToTransparent 1s ease-out 0.2s forwards;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    background: #fff;
    padding: 0.5rem;
    border-radius: 100%;
    box-shadow: var(--shadow-sm);
}

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

.hamburger {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: #fff;
    font-size: 1.7rem;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
}

.hamburger:hover {
    background: #111;
    color: #fff;
    transform: scale(1.1);
}

header.scrolled .hamburger {
    background: transparent;
    color: #fff;
}

header.scrolled .hamburger:hover {
    color: #f4f4f4;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 6rem 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav.fade-active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #111;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: var(--primary-black);
    transform: scale(1.1);
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    text-decoration: none;
    color: #111;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    min-width: 250px;
}

.mobile-nav a:hover {
    color: #fff;
    background: #111;
    transform: scale(1.05);
}/* =============================================================================
   BUTTONS
   ============================================================================= */

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #111;
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    justify-content: center;
}

.button:hover {
    background: #000;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-light {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #111;
    color: #fff !important;
    border: none;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    justify-content: center;
}

.button-light:hover {
    background: #000;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-light-white {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #111;
    color: #fff !important;
    border: none;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    justify-content: center;
}

.button-light-white:hover {
    background: #000;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

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

.hero-bg-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--primary-black);
    opacity: 0;
    animation: heroBackgroundFadeIn 1s ease-out 0.2s forwards;
}

.hero-bg-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
    filter: grayscale(0.1) contrast(1.1);
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    z-index: 4;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.65));
    z-index: -1;
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    padding: 3rem 2rem;
    position: relative;
    z-index: 5;
    background: transparent;
    border-radius: var(--border-radius-lg);
}

.hero-content > * {
    opacity: 0;
    animation: slideInUp 0.6s ease-out 0.5s forwards;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 8.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.location {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-buttons .button {
    background: #111;
    color: #fff !important;
    border: none;
}

.hero-buttons .button:hover {
    background: #000;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons .button-light {
    background: #111;
    color: #fff !important;
    border: none;
}

.hero-buttons .button-light:hover {
    background: #000;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
    color: var(--primary-black);
    font-size: 0.9rem;
    font-weight: 500;
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: #111;
    transform: translateY(-3px);
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: arrowBounce 2s ease-in-out infinite;
}
/* =============================================================================
   SECTION STYLES
   ============================================================================= */

section {
    padding: 6rem 0;
    position: relative;
}

/* About Restaurant Section - Dark Theme */
.about-restaurant {
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.1;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.welcome-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 500px;
}

.welcome-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
}

.welcome-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, transparent 50%, rgba(30, 58, 138, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.welcome-img:hover::before {
    opacity: 1;
}

.welcome-img.img1 {
    grid-column: 1;
    grid-row: 1/3;
}

.welcome-img.img2 {
    grid-column: 2;
    grid-row: 1;
}

.welcome-img.img3 {
    grid-column: 2;
    grid-row: 2;
}

.welcome-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.welcome-img img, .about-image img, .highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    will-change: transform;
}

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

/* Asian Fusion Banner Section */
.asian-fusion-banner {
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-black);
}

.asian-fusion-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/placeholder3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.asian-fusion-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

.asian-fusion-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
}

.asian-fusion-content h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.asian-fusion-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-style: italic;
}

/* Info/Contact Section - Dark Theme */
.info {
    background: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    margin: 0 2rem;
}

#kontakt {
    padding: 6rem 0 0 0;
    overflow: visible;
}

.info-gallery-wrap {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto 0 auto;
    overflow: visible;
}

.info-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 180px;
    max-width: 220px;
    overflow: visible;
    padding: 30px 0;
    margin: -30px 0;
}

.info-gallery-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--bg-tertiary);
    background: var(--bg-secondary);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1.2rem;
}

.info-gallery-img:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.info-gallery-img:last-child {
    margin-bottom: 0;
}

.info-galleries-mobile {
    display: none;
}

.info-galleries-mobile img {
    width: 100%;
    border-radius: 10px;
}

.info-minimal-bordered {
    border-left: 1px dashed #444;
    box-shadow: none;
    padding: 2.5rem 2rem 2rem 4rem;
    min-width: 320px;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-minimal {
    max-width: 520px;
    margin: 0 auto 3rem auto;
    font-size: 1.08rem;
    color: var(--text-primary);
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    text-align: left;
}

.info-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.1rem;
}

.info-label {
    min-width: 120px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.info-value {
    flex: 1;
    color: var(--text-secondary);
    text-align: left;
}

.info-divider {
    border-bottom: 1px solid #444;
    margin: 1.2rem 0 1.2rem 0;
}

.info-muted {
    color: var(--text-muted);
    font-style: italic;
}

.info-block a:hover {
    color: var(--primary-red);
}

.parallax-img {
    will-change: transform;
}

.mt-2 {
    margin-top: 0.8rem;
}/* Map Section */
.map-section {
    background: var(--bg-primary);
    padding: 0;
    position: relative;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.map-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(20, 0, 0, 0.2) 25%, rgba(20, 0, 0, 0.3) 50%, rgba(20, 0, 0, 0.4) 75%, rgba(20, 0, 0, 0.5) 100%);
    padding: 3rem 1.5rem 1.5rem;
}

.map-banner a {
    color: white;
    text-decoration: none;
}

.map-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Social Media Section - Dark Theme */
.social-media-section {
    background: var(--bg-secondary);
    padding: 4rem 0 3rem 0;
    text-align: center;
}

.social-media-content {
    max-width: 600px;
    margin: 0 auto;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.social-title::before {
    content: '#';
    color: var(--text-primary);
    margin-right: 0.1em;
    font-weight: 900;
    opacity: 0.18;
    font-size: 2.2rem;
    vertical-align: middle;
}

.social-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 2.2rem;
    color: #fff;
    background: var(--primary-red);
    box-shadow: 0 6px 24px rgba(196, 30, 58, 0.10);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    position: relative;
    text-decoration: none;
}

.social-icon.instagram,
.social-icon.facebook {
    background: var(--primary-red);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.15);
    background: var(--primary-black);
    color: #fff;
}

/* Image Highlight Section - Dark Theme */
.image-highlight {
    background: var(--bg-secondary);
    padding: 6rem 0;
    position: relative;
}

.image-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(196, 30, 58, 0.1) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.highlight-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.highlight-img {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/3;
}

.highlight-img:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.highlight-img:hover img {
    transform: scale(1.1);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.9) 100%);
    color: var(--text-primary);
    padding: 3rem 1.5rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.highlight-img:hover .img-caption {
    transform: translateY(0);
}

.highlight-img a {
    text-decoration: none;
    color: inherit;
}

.highlight-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.highlight-content {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    text-align: center;
}

.highlight-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
/* =============================================================================
   FOOTER
   ============================================================================= */

footer {
    background: #111;
    color: #fff;
    padding: 4rem 0 0;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-brand .footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    background: #fff;
    padding: 0.5rem;
    border-radius: 100%;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-quick-links li {
    margin-bottom: 0.75rem;
}

.footer-quick-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-quick-links a:hover {
    color: var(--primary-red);
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--primary-red);
    width: 16px;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ccc;
    font-size: 1.2rem;
    border-radius: 50%;
    border: 2px solid #333;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
}

.footer-social-icons a:hover {
    color: #fff;
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-legal span {
    color: #555;
}

.footer-copy {
    font-size: 0.9rem;
}

.footer-copy a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copy a:hover {
    color: var(--primary-red);
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* =============================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================================================= */

/* Large tablets and small desktops */
@media (max-width: 1000px) {
    .about-restaurant {
        padding: 3rem 0 0 0 !important;
    }
    header {
        padding: 0;
        position: fixed;
        z-index: 1500;
    }
    
    .hero-bg-slider {
        background-attachment: scroll;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .social-media-section {
        padding: 4rem 1rem 3rem 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .logo img {
        height: 50px;
        margin: 0.5rem 0;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-content h1 {
        font-size: clamp(5rem, 8vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 0.1rem;
        text-align: center;
    }
    
    .welcome-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
        gap: 1.5rem;
    }
    
    .welcome-img.img1,
    .welcome-img.img2,
    .welcome-img.img3 {
        grid-column: 1;
        grid-row: auto;
        height: 250px;
    }
    
    .welcome-img.img2,
    .welcome-img.img3 {
        display: none;
    }
    
    .about-buttons {
        justify-content: center;
    }
    
    .about-text h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .highlight-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    section {
        padding: 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Asian Fusion Banner responsive */
    .asian-fusion-banner {
        height: 400px;
    }
    
    .asian-fusion-banner::before {
        background-attachment: scroll;
    }
    
    .asian-fusion-content h2 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .asian-fusion-content p {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    /* Info section responsive */
    .info-minimal-bordered {
        border-left: none !important;
        padding: 1.5rem 1.2rem 1.5rem 0rem !important;
    }
    
    .info-row {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 0rem !important;
        margin-bottom: 0 !important;
    }
    .info {
        margin: 0 0 2.5rem 0 !important;
    }
}

/* Medium tablets */
@media (max-width: 900px) {
    .info-minimal-bordered {
        border-left: none !important;
        padding: 1.5rem 0.25rem 1.5rem 0.25rem !important;
    }
    
    .info-row {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 0rem !important;
        margin-bottom: 0 !important;
    }
    
    .info-label {
        margin-bottom: 0.2em;
        font-size: 1em;
    }
    
    .info-value {
        font-size: 1em;
    }
    
    .info-gallery {
        display: none !important;
    }
    
    .info-galleries-mobile {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .info-gallery-wrap {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
        max-width: 98vw;
    }
    
    .info-gallery.info-gallery-left {
        display: none;
    }
    
    .info-gallery.info-gallery-right {
        flex-direction: row;
        gap: 0.7rem;
        max-width: 100vw;
        min-width: 0;
        justify-content: center;
        margin-top: 1.2rem;
    }
    
    .info-gallery-img {
        max-width: 33vw;
        min-width: 0;
        aspect-ratio: 4/3;
        margin-bottom: 0;
        margin-right: 0.7rem;
    }
    
    .info-gallery-img:last-child {
        margin-right: 0;
    }
    
    .info-minimal-bordered {
        min-width: 0;
        max-width: 100vw;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-banner {
        padding: 2rem 1rem 1rem;
    }
    
    .map-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Small tablets and phones */
@media (max-width: 600px) {
    .about-restaurant {
        padding: 3rem 0 0 0 !important;
    }
    section {
        padding: 0 !important;
    }
    #kontakt {
        padding: 2rem 0 0rem 0;
    }
    .info {
        margin: 0 0 2.5rem 0 !important;
    }
    
    .info-minimal {
        margin: 0;
        padding: 1.4rem 1.2rem 1.4rem 1.2rem !important;
        font-size: 0.98rem;
    }
    
    .info-label {
        min-width: 80px;
        font-size: 0.98rem;
    }
    
    .info-row {
        gap: 0.7rem;
        margin-bottom: 0.7rem;
    }
    
    .info-gallery-wrap {
        flex-direction: column;
        gap: 0.8rem;
        max-width: 100vw;
        padding: 0 1rem;
    }
    
    .info-gallery {
        flex-direction: row;
        gap: 0.4rem;
        max-width: 100vw;
        justify-content: center;
        padding: 15px 0;
        margin: -15px 0;
    }
    
    .info-gallery-img {
        max-width: 32vw;
        min-width: 0;
        aspect-ratio: 4/3;
        margin-bottom: 0;
        margin-right: 0.4rem;
    }
    
    .info-gallery-img:last-child {
        margin-right: 0;
    }
    
    .social-media-section {
        padding: 2.5rem 0 2rem 0;
    }
    
    .social-title {
        font-size: 1.6rem;
    }
    
    .social-subtitle {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
    .social-icons {
        gap: 1.2rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-contact-info p {
        justify-content: center;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .logo img {
        height: 60px;
    }
}