:root {
    --primary-red: #b42727;
    --dark-bg: #1c181a;
    --light-bg: #f9f3f1;
    --white: #fff;
    --text-dark: #1c181a;
    --text-light: #f9f3f1;
    --shadow: rgba(180,39,39,.1);
    --shadow-dark: rgba(28,24,26,.2)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden
}

.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: relative;
    z-index: 100
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px
}

.logo {
    max-width: 200px;
    height: auto;
    transition: transform .3s ease
}

.logo:hover {
    transform: scale(1.05)
}

.maintenance-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg,var(--light-bg) 0%,var(--white) 100%)
}

.maintenance-container {
    max-width: 800px;
    margin: 0 auto
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 32px var(--shadow);
    animation: pulse 2s infinite
}

.maintenance-icon::before {
    content: "🔧";
    font-size: 32px;
    color: var(--white)
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 32px var(--shadow);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(180, 39, 39, 0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px var(--shadow);
    }
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 700
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    opacity: .8
}

.maintenance-message {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px var(--shadow-dark);
    border-left: 5px solid var(--primary-red)
}

.maintenance-message p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark)
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--light-bg);
    border-radius: 3px;
    overflow: hidden;
    margin: 20px 0
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,var(--primary-red),#e53e3e);
    width: 0%;
    animation: loading 3s ease-in-out infinite
}

@keyframes loading {
    0% {
        width: 0%;
    }

    50% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

.restaurant-info {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 20px
}

.info-container {
    max-width: 1200px;
    margin: 0 auto
}

.info-header {
    text-align: center;
    margin-bottom: 50px
}

.info-header h2 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 15px
}

.info-header p {
    font-size: 1.1rem;
    opacity: .9;
    max-width: 600px;
    margin: 0 auto
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 40px
}

.info-card {
    background: rgba(249,243,241,.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform .3s ease , box-shadow .3s ease;
    border: 1px solid rgba(180,39,39,.2)
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(180,39,39,.1)
}

.info-card h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 15px
}

.info-card p {
    font-size: 1rem;
    opacity: .9
}

.specialties {
    background: var(--white);
    padding: 60px 20px
}

.specialties-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.specialties h2 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 20px
}

.specialties-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    opacity: .8
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
    margin-top: 30px
}

.specialty-item {
    background: linear-gradient(135deg,var(--primary-red),#d63031);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform .3s ease
}

.specialty-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180,39,39,.3)
}

.contact-section {
    background: var(--light-bg);
    padding: 60px 20px
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.contact-container h2 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 30px
}

.contact-info {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    margin-bottom: 30px
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    font-size: 1.1rem;
}

.contact-item span {
    margin-right: 12px;
    font-size: 1.3rem
}

.testimonial {
    background: var(--primary-red);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 30px;
    position: relative
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: .3
}

.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 40px 20px;
    text-align: center
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s ease
}

.footer-links a:hover {
    color: #e53e3e;
    text-decoration: underline
}

.footer-text {
    font-size: .9rem;
    opacity: .8;
    margin-top: 0px;
}

@media (max-width: 768px) {
    h1 {
        font-size:2rem
    }

    .info-header h2,.specialties h2,.contact-container h2 {
        font-size: 1.8rem
    }

    .maintenance-message {
        padding: 25px
    }

    .info-card {
        padding: 20px
    }

    .logo {
        max-width: 150px
    }
}

@media (max-width: 480px) {
    .maintenance-section {
        padding:20px 15px
    }

    .restaurant-info,.specialties,.contact-section {
        padding: 40px 15px
    }

    h1 {
        font-size: 1.8rem
    }
}

.fade-in {
    animation: fadeIn 1s ease-in
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card,.specialty-item {
    will-change: transform
}

@media (prefers-reduced-motion:reduce) {
    *,*::before,*::after {
        animation-duration: .01ms!important;
        animation-iteration-count: 1!important;
        transition-duration: .01ms!important
    }
}
