/* Modern Variables */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #f39c12;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: rgba(0, 0, 0, 0.05);
    --accent-shadow: rgba(231, 76, 60, 0.08);
    --text-primary: #2c3e50;
    --text-secondary: #666;
    --bg-gradient-1: #f8f9fa;
    --bg-gradient-2: #e9ecef;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 100%);
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    perspective: 1000px;
}

/* Modern Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(231, 76, 60, 0.05) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(243, 156, 18, 0.05) 2%, transparent 0%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: -1;
}

/* Remove all background patterns and decorative elements */
body::before,
body::after,
.floating-element,
.dots,
.lines {
    display: none;
}

/* Modern Section Styles */
.menu-section, .about-section, .features-section {
    background: transparent;
    position: relative;
    transform-style: preserve-3d;
}

.menu-category {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 10px 30px var(--glass-shadow),
        0 0 20px var(--accent-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.menu-category:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 
        0 15px 40px var(--glass-shadow),
        0 0 30px var(--accent-shadow);
}

.menu-category h2 {
    color: #e74c3c;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.menu-category h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #e74c3c, #f39c12);
    border-radius: 4px;
}

.menu-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg);
    box-shadow: 
        0 15px 40px var(--glass-shadow),
        0 0 30px var(--accent-shadow);
}

.menu-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

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

.menu-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.menu-item p {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 1.15rem;
    line-height: 1.7;
}

.menu-item .price {
    display: inline-block;
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: auto;
    padding: 10px 25px;
    background: #fff5f5;
    border-radius: 30px;
    transition: all 0.4s ease;
}

.menu-item:hover .price {
    background: linear-gradient(to right, #e74c3c, #f39c12);
    color: white;
}

/* Gallery Section */
.gallery-section {
    padding-top: 80px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    cursor: pointer;
}

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

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    color: white;
    font-size: 2em;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(5px);
}

.hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.hero-section h1 {
    color: white;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 4px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    line-height: 1.2;
}

.hero-section p {
    color: white;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: min(800px, 90%);
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-section .btn {
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(2rem, 5vw, 3.5rem);
    font-size: clamp(1rem, 3vw, 1.3rem);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.5vw, 2px);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
    position: relative;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
}

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

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

.hero-section .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.6);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--glass-bg);
    position: relative;
}

.about-section h2 {
    color: var(--text-primary);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-section p {
    color: var(--text-secondary);
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.about-section img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.about-section img:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--glass-bg);
    position: relative;
}

.feature-item {
    text-align: center;
    padding: 50px 30px;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.feature-item:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg);
    box-shadow: 
        0 15px 40px var(--glass-shadow),
        0 0 30px var(--accent-shadow);
}

.feature-item i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover i {
    transform: scale(1.2) rotateY(180deg);
    color: var(--secondary-color);
}

.feature-item h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Indicator */
#loading-indicator {
    margin: 4rem 0;
    text-align: center;
}

#loading-indicator .spinner-border {
    width: 4rem;
    height: 4rem;
    color: #e74c3c;
    border-width: 0.25em;
}

#loading-indicator p {
    margin-top: 1.5rem;
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Error Message */
#error-message {
    margin: 4rem 0;
    padding: 2rem;
    border-radius: 12px;
    background: #fff5f5;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    font-size: 1.2rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-section {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }

    .hero-section .container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 350px;
    }

    .hero-section .container {
        padding: 0 10px;
    }
}

@media (max-height: 600px) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-section h1 {
        margin-bottom: 0.5rem;
    }

    .hero-section p {
        margin-bottom: 1rem;
    }
}

/* Footer Styles */
footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(20px);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%),
        radial-gradient(circle at top right, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: gradientShift 15s ease infinite;
}

footer a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* Modern Floating Elements */
.floating-element {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    filter: blur(1px);
    transition: all 0.5s ease;
    will-change: transform;
}

.circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(231, 76, 60, 0.08) 0%, 
        rgba(243, 156, 18, 0.05) 30%, 
        transparent 70%);
    top: -250px;
    right: -250px;
    animation: float3D 15s ease-in-out infinite;
    box-shadow: 
        0 0 60px rgba(231, 76, 60, 0.08),
        0 0 120px rgba(243, 156, 18, 0.05);
    transform-style: preserve-3d;
}

.square {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, 
        rgba(243, 156, 18, 0.08) 0%, 
        rgba(231, 76, 60, 0.05) 50%, 
        transparent 100%);
    bottom: -200px;
    left: -200px;
    animation: float3D 20s ease-in-out infinite reverse;
    box-shadow: 
        0 0 50px rgba(243, 156, 18, 0.08),
        0 0 100px rgba(231, 76, 60, 0.05);
    transform-style: preserve-3d;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 250px solid transparent;
    border-right: 250px solid transparent;
    border-bottom: 433px solid rgba(231, 76, 60, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3D 25s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(231, 76, 60, 0.08));
    transform-style: preserve-3d;
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) rotateX(5deg) rotateY(5deg) scale(1.05);
    }
}

/* Modern Decorative Elements */
.dots {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(231, 76, 60, 0.08) 1px, transparent 1px),
        radial-gradient(rgba(243, 156, 18, 0.05) 1px, transparent 1px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    pointer-events: none;
    z-index: -1;
    animation: dotsFloat 30s linear infinite;
    opacity: 0.3;
}

.lines {
    position: fixed;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(231, 76, 60, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(243, 156, 18, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    animation: linesFloat 40s linear infinite;
    opacity: 0.3;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 0%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 100%;
        filter: hue-rotate(10deg);
    }
}

@keyframes dotsFloat {
    0% {
        background-position: 0 0, 15px 15px;
    }
    100% {
        background-position: 30px 30px, 45px 45px;
    }
}

@keyframes linesFloat {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Modern Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

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

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

.btn:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(231, 76, 60, 0.3);
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

/* Section Spacing */
.menu-section,
.gallery-section,
.reservation-section {
    padding-top: 120px !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
}

/* Title Spacing */
.menu-section h1,
.gallery-section h1,
.reservation-section h1 {
    margin-top: 40px;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

/* Remove any top margin from sections */
section {
    margin-top: 0 !important;
}

/* Ensure proper spacing after navbar */
.navbar + section {
    margin-top: 0 !important;
    padding-top: 120px !important;
} 