/* Base styles and variables */
:root {
    --primary-color: #E31837;
    --dark-bg: #111;
    --light-text: #fff;
    --header-height: 71px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--dark-bg);
    color: var(--light-text);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.logo-link {
    display: block;
    transition: transform var(--transition-speed) ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    width: 40px;
    height: 40px;
    display: block;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color var(--transition-speed) ease;
    position: relative;
    padding: 5px 0;
}

nav a:hover, 
nav a.active {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

nav a:hover::after, 
nav a.active::after {
    width: 100%;
}

.nav-order-button {
    background-color: var(--primary-color);
    padding: 8px 16px !important;
    border-radius: 4px;
}

.nav-order-button:hover {
    background-color: #ff1a1a;
}

.nav-order-button::after {
    display: none;
}

/* Mobile menu */
.mobile-menu-button {
    display: none;
    color: var(--light-text);
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    transition: color var(--transition-speed) ease;
    position: absolute;
    left: 20px;
}

.mobile-menu-button:hover {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 1000;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    color: var(--light-text);
    text-decoration: none;
    padding: 15px 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu a:not(.order-button) {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu a:not(.order-button):hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu .order-button {
    background-color: var(--primary-color);
    color: white;
    margin-top: 10px;
}

.mobile-menu .order-button:hover {
    background-color: #ff1a1a;
}

/* Hero section */
.hero {
    height: 100vh;
    position: relative;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.hero:hover .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.order-button,
.menu-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}

.order-button {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.menu-button {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.order-button:hover,
.menu-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
}

/* Menu page styles */
.menu-page {
    padding: 80px 0;
    margin-top: var(--header-height);
}

.menu-selector {
    text-align: center;
    margin: 30px 0;
}

.menu-tab {
    padding: 10px 30px;
    background: none;
    border: 1px solid #333;
    cursor: pointer;
    margin: 0 10px;
    color: var(--light-text);
    text-transform: uppercase;
    transition: all var(--transition-speed) ease;
}

.menu-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
}

.menu-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-image.loaded {
    opacity: 1;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    margin-bottom: 0.5rem;
}

address {
    font-style: normal;
    line-height: 1.8;
}

address a {
    color: var(--light-text);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

address a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-speed) ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
        justify-content: center;
    }
    
    .logo-link {
        margin: 0 auto;
    }
    
    .mobile-menu-button {
        display: block;
    }

    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .menu-selector {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }

    .menu-tab {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
/* Welcome Section Styles */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0a0a0a, #111);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(227, 24, 55, 0.5), 
        transparent
    );
}

.section-header {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.section-header:hover h2::after {
    width: 100%;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(227, 24, 55, 0.3);
}

.features {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature:hover::before {
    height: 100%;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    position: relative;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-header p {
        padding-left: 0;
        border-left: none;
        text-align: center;
        font-size: 1rem;
        line-height: 1.6;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature {
        padding: 25px;
        text-align: center;
    }

    .feature::before {
        width: 100%;
        height: 3px;
        transition: width 0.3s ease;
    }

    .feature:hover::before {
        width: 0;
    }

    .feature h3 {
        font-size: 1.3rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature:nth-child(2) {
    animation-delay: 0.2s;
}

.feature:nth-child(3) {
    animation-delay: 0.4s;
}

/* Menu Page Styles */
.menu-page {
    padding: 120px 0 60px;
    margin-top: 0;
    background-color: var(--dark-bg);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.menu-tab {
    padding: 12px 30px;
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--light-text);
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    border-radius: 4px;
}

.menu-tab:hover {
    background-color: rgba(227, 24, 55, 0.1);
}

.menu-tab.active {
    background-color: var(--primary-color);
    color: white;
}

.menu-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-image.loaded {
    opacity: 1;
    transform: translateY(0);
}

.menu-info {
    text-align: center;
    margin-top: 40px;
}

.warning-section {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 60px 0;
}

.warning-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 30px;
}

.warning-box {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.warning-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.warning-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-page {
        padding: 100px 0 40px;
    }

    .menu-tabs {
        flex-direction: column;
        padding: 0 20px;
    }

    .menu-tab {
        width: 100%;
    }

    .menu-grid {
        gap: 30px;
    }

    .warning-content {
        gap: 20px;
    }

    .warning-box {
        padding: 20px;
    }
}
/* About Page Styles */
.about-page {
    padding-top: var(--header-height);
    background-color: var(--dark-bg);
}

.about-section {
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.about-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.about-content:hover h1::after {
    width: 100%;
}

.about-text {
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item:hover::before {
    height: 100%;
}

.value-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Animation for value items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.value-item:nth-child(2) {
    animation-delay: 0.2s;
}

.value-item:nth-child(3) {
    animation-delay: 0.4s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content h1 {
        font-size: 2.2rem;
        text-align: center;
        display: block;
    }

    .about-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text p {
        font-size: 1rem;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-item {
        text-align: center;
        padding: 25px;
    }

    .value-item::before {
        width: 100%;
        height: 3px;
        transition: width 0.3s ease;
    }

    .value-item:hover::before {
        width: 0;
    }
}

@media (max-width: 480px) {
    .about-content h1 {
        font-size: 2rem;
    }

    .value-item h3 {
        font-size: 1.2rem;
    }
}