/* General Styles */
:root {
    --color-bg: #FAF3E0;
    --color-accent: #F25C54;
    --color-secondary: #2F2F2F;
    --color-element: #FFD479;
    --color-text: #212121;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    font-family: 'Arial', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    color: var(--color-secondary);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 0.8rem auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn--primary {
    background-color: var(--color-accent);
    color: white;
}

.btn--primary:hover {
    background-color: var(--color-secondary);
    color: white;
    transform: translateY(-3px);
}

/* Header Styles */
.header {
    background-color: rgba(250, 243, 224, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.nav__list {
    display: flex;
}

.nav__item {
    margin-left: 2rem;
}

.nav__link {
    color: var(--color-secondary);
    font-weight: 600;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.header__phone {
    color: var(--color-secondary);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    position: absolute;
    transition: var(--transition);
}

.nav-toggle span {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span::before {
    content: '';
    top: -8px;
}

.nav-toggle span::after {
    content: '';
    bottom: -8px;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-bg);
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 100;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
    }

    .nav.show {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
    }

    .nav__item {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: block;
        z-index: 101;
    }

    .nav-toggle.active span {
        background-color: transparent;
    }

    .nav-toggle.active span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle.active span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 99;
    }

    /* Mobile menu */
    .nav.show {
        right: 0;
    }

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero Section */
.hero {
    background-image: url('../img/rF6UW2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease;
    text-align: center;
    margin: 0 auto;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about__inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about__content {
    flex: 1;
    animation: fadeInLeft 1s ease;
}

.about__content p {
    margin-bottom: 1.5rem;
}

.about__image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInRight 1s ease;
}

/* Burrito Types Section */
.burrito-types {
    padding: 6rem 0;
    background-color: var(--color-secondary);
    color: white;
}

.burrito-types .section-title {
    color: white;
}

.burrito-types__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.burrito-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    animation: fadeIn 1s ease;
}

.burrito-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.burrito-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-element);
}

/* Values Section */
.values {
    padding: 6rem 0;
}

.values__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.values__item {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1s ease;
}

.values__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.benefits__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeIn 1s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit__title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

/* Menu Section */
.menu {
    padding: 6rem 0;
}

.menu__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeIn 1s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.menu-card__image {
    height: 220px;
    overflow: hidden;
}

.menu-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card__image img {
    transform: scale(1.05);
}

.menu-card__content {
    padding: 1.5rem;
}

.menu-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.menu-card__desc {
    margin-bottom: 1rem;
    color: #666;
}

.menu-card__price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-accent);
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background-color: var(--color-secondary);
    color: white;
}

.reviews .section-title {
    color: white;
}

.reviews__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    animation: fadeIn 1s ease;
}

.review__stars {
    color: var(--color-element);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review__text {
    font-style: italic;
    margin-bottom: 1rem;
}

.review__author {
    text-align: right;
    font-weight: bold;
}

/* Order Form Section */
.order {
    padding: 6rem 0;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-date-time label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-date-time__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.order-form .btn {
    width: 100%;
}

@media (min-width: 768px) {
    .form-date-time__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--color-secondary);
    color: white;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer__desc {
    margin-bottom: 1.5rem;
}

.footer__title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-element);
}

.footer__address p {
    margin-bottom: 0.5rem;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__list a {
    color: #ddd;
}

.footer__list a:hover {
    color: var(--color-accent);
}

.footer__copy {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Policy Pages */
.policy {
    padding: 6rem 0;
}

.policy__content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease;
}

.policy__content h2 {
    color: var(--color-secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy__content h3 {
    color: var(--color-accent);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.policy__content p {
    margin-bottom: 1rem;
}

.policy__content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy__content ul li {
    margin-bottom: 0.5rem;
}

/* About Page */
.about-page {
    padding: 6rem 0;
}

.about-page__content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease;
}

.about-page__content h2 {
    color: var(--color-secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-page__content h3 {
    color: var(--color-accent);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.about-page__content p {
    margin-bottom: 1rem;
}

/* Blog Page */
.blog {
    padding: 6rem 0;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease;
}

.blog-post__title {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.blog-post__meta {
    color: #777;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.blog-post__content h3 {
    color: var(--color-accent);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.blog-post__content p {
    margin-bottom: 1rem;
}

/* Tips Page */
.tips {
    padding: 6rem 0;
}

.tips__content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease;
}

.tips__content h2 {
    color: var(--color-secondary);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.tips__content h3 {
    color: var(--color-accent);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.tips__content p {
    margin-bottom: 1rem;
}

/* Thanks Page */
.thanks {
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks__content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks__message {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease;
    text-align: center;
}

.thanks__message h2 {
    color: var(--color-accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.thanks__message p {
    margin-bottom: 1rem;
}

.thanks__message ul {
    list-style: none;
    margin-bottom: 2rem;
    display: inline-block;
    text-align: left;
}

.thanks__buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn--secondary {
    background-color: white;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn--secondary:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-popup__content p {
    margin-bottom: 1.5rem;
}

.cookie-popup__buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-popup__link {
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero__title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about__inner {
        flex-direction: column;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit__icon {
        font-size: 2rem;
    }
}
