



@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');

h1 {
    font-family: 'Montserrat', sans-serif !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 0.5em 0;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow-primary) 0%, var(--yellow-dark) 100%);
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    transform: translateX(-100%);
    animation: slideIn 1.5s ease-out forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

.text-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}



:root {
    --yellow-primary: #FFD700;
    --yellow-dark: #FFB700;
    --yellow-light: #FFE44D;
    --black: #000000;
    --black-light: #1a1a1a;
}

body {
    background: linear-gradient(135deg, #000000, #0a0a0a, #000000);
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.glass-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.36),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.glass-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.glass-hover {
    transition: all 0.3s ease;
}

.glass-hover:hover {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(0, 0, 0, 0.9));
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.5);
}

.drop-shadow-glow {
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.bg-yellow {
    background-color: var(--yellow-primary);
    position: relative;
    color: var(--black);
}

.bg-yellow-gradient {
    background: linear-gradient(135deg, var(--yellow-primary) 0%, var(--yellow-dark) 100%);
    position: relative;
    color: var(--black);
}

.bg-dark {
    background: linear-gradient(45deg, var(--black), var(--black-light));
    position: relative;
    color: white;
}

.hero-title {
    font-family: 'Hamburg';
    text-transform: uppercase;
    color: white;
    line-height: 1;
    letter-spacing: 0.02em;
    font-style: italic;
    font-weight: 800;
    transform: skew(-8deg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-title span {
    display: block;
    white-space: nowrap;
    transform-origin: center;
}

.hero-title span:last-child {
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

.hero-title .umlaut {
    position: relative;
    display: inline-block;
}

.hero-title .umlaut::before {
    content: '¨';
    position: absolute;
    top: -0.2em;
    left: 50%;
}

/* Text Effects */
.text-group {
    perspective: 1000px;
}

.text-wrap {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-stroke {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.text-fill-gold {
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.text-fill-white {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.text-wrap:hover {
    transform: translateY(-4px);
}

.text-wrap:hover .text-fill-gold {
    color: #FFC123;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.text-wrap:hover .text-fill-white {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.text-wrap:hover .text-stroke {
    -webkit-text-stroke: 2.5px rgba(255, 255, 255, 1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

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

.text-wrap:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}

.text-wrap:nth-child(2) {
    animation: float 6s ease-in-out infinite 0.5s;
}

.text-wrap:nth-child(3) {
    animation: float 6s ease-in-out infinite 1s;
}

/* Animations */
.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Accessibility Improvements */
.focus-visible:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile Menu Improvements */
#mobile-menu {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(-10px);
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

/* Button and Link Hover States */
.btn-primary, .text-primary {
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(255, 255, 0, 0.1), 0 2px 4px -1px rgba(255, 255, 0, 0.06);
}

/* Menu Card Improvements */
.menu-card {
    transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.menu-card:hover {
    transform: translateY(-5px);
}

/* Improved Typography */
.text-gray-300 {
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Focus Styles for Interactive Elements */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/* Skip to Main Content Link */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: var(--primary-color);
    color: black;
    text-decoration: none;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
}

.hero-title .umlaut::before {
    transform: translateX(-50%);
    font-size: 0.7em;
    font-weight: 900;
}

.font-ultra {
    font-family: 'Neo Sans W1G';
    font-weight: 900;
    letter-spacing: -0.02em;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 0;
}

section {
    position: relative;
    z-index: 1;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #FFD700;
    color: black;
    border-radius: 0.375rem;
    transition: all 0.2s;
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: #FFC000;
    transform: translateY(-1px);
    border-color: rgba(0,0,0,0.2);
}

.morphing-text {
    position: relative;
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    font-style: italic;
    transform: skew(-10deg);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.morphing-text .word {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: none;
}

@keyframes fade-slide-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-slide-up {
    animation: fade-slide-up 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.morphing-text .word.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.morphing-text .word.fade-out {
    animation: fadeOut 0.8s ease forwards;
}

.morphing-text .word:first-child {
    opacity: 1;
    transform: translateY(0);
}

.aurora-text {
    position: relative;
    color: transparent;
    background: linear-gradient(
        to right,
        #818cf8,
        #e879f9,
        #22d3ee,
        #818cf8
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: aurora 8s linear infinite;
    text-shadow: 0 0 20px rgba(192, 219, 255, 0.2);
}

.aurora-text::after {
    content: "PREMIUM GERMAN KEBAB";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        #818cf8,
        #e879f9,
        #22d3ee,
        #818cf8
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: aurora 8s linear infinite;
    filter: blur(25px);
    opacity: 0.5;
}

@keyframes aurora {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}
