@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --primary: #ff6b35;
    --primary-dark: #e85a2a;
    --secondary: #2b2d42;
    --light: #f8f9fa;
    --text: #333333;
    --text-light: #6c757d;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: var(--secondary);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.reveal-invisible {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

nav .logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

nav .logo a span {
    color: var(--primary);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.3rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary);
}

nav ul li a.active::after {
    width: 100%;
}

main {
    min-height: 80vh;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 2rem;
}

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

.footer-info p {
    margin-bottom: 0;
    color: var(--gray-300);
    font-size: 0.9rem;
}

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

.footer-social a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

#hero {
    background-color: var(--secondary);
    color: var(--white);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

#hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#hero p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#about {
    background-color: var(--white);
    padding: 6rem 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

#menu-highlights .menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

#menu-highlights .menu-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    flex: 1 1 300px;
    max-width: 350px;
    transition: var(--transition);
    text-align: center;
}

#menu-highlights .menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.menu-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

#reviews {
    background-color: var(--gray-100);
    padding: 6rem 2rem;
}

#reviews .review-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

#reviews .review {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    flex: 1 1 300px;
    max-width: 350px;
}

#reviews .review:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

#reviews .review p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

#reviews .review p:before {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 0.3rem;
    font-family: Georgia, serif;
}

#reviews .stars {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

#reviews .customer {
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
}

#cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

#cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

#cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

#cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 100;
}

.hamburger:hover div {
    background-color: var(--primary);
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    #hero h1 {
        font-size: 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
        opacity: 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    #contact-page .contact-container {
        flex-direction: column;
    }

    #contact-page .contact-details {
        width: 100%;
    }

    #contact-page .map {
        width: 100%;
        margin-top: 2rem;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 576px) {
    section {
        padding: 4rem 1.5rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero {
        padding: 6rem 1.5rem;
    }

    .order-features {
        flex-direction: column;
    }

    #contact-page .contact-details {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .contact-item:last-child {
        margin-bottom: 0;
    }

    .contact-item i {
        margin-bottom: 1rem;
    }

    .hours-list li {
        flex-direction: column;
        text-align: center;
    }
}

.view-full-review {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.view-full-review:hover {
    color: var(--primary-dark);
}

.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.review-modal.active {
    opacity: 1;
    visibility: visible;
}

.review-modal-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    width: 90%;
    max-width: 550px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(-30px);
    transition: all 0.3s ease;
    position: relative;
}

.review-modal.active .review-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.modal-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.modal-review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.modal-customer {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.modal-review-text {
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .review-modal-content {
        padding: 1.5rem;
    }

    .modal-review-avatar {
        width: 50px;
        height: 50px;
    }
} 