/* Base Styles */
:root {
    --primary-bg: #FDF4E3;
    --primary-accent: #FF6B35;
    --secondary-accent: #14213D;
    --text-color: #333333;
    --gradient-1: linear-gradient(135deg, #FFD6A5, #FDFFB6);
    --gradient-2: linear-gradient(135deg, #A0C4FF, #BDB2FF);
    --border-radius: 8px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

* {
    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-color);
    background-color: var(--primary-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: var(--secondary-accent);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-accent);
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.image-card {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.image-card img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Section Gradients */
.section-gradient-1 {
    background: var(--gradient-1);
}

.section-gradient-2 {
    background: var(--gradient-2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.primary-btn {
    background-color: var(--primary-accent);
    color: white;
}

.primary-btn:hover {
    background-color: var(--secondary-accent);
    color: white;
}

.secondary-btn {
    background-color: var(--secondary-accent);
    color: white;
}

.secondary-btn:hover {
    background-color: var(--primary-accent);
    color: white;
}

/* Header */
header {
    background-color: var(--secondary-accent);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-accent);
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-icon span {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/JTYzRm.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* About Section */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text, .about-image {
    flex: 1;
}

/* Menu Section */
.burrito-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.burrito-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.burrito-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.burrito-info {
    padding: 20px;
}

.burrito-info a {
    color: var(--text-color);
}

.burrito-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-accent);
    margin-top: 10px;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.review-card a {
    color: var(--text-color);
}

.stars {
    color: gold;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.reviewer {
    font-style: italic;
    text-align: right;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-card a {
    color: var(--text-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Approach Section */
.approach-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.approach-text, .approach-image {
    flex: 1;
}

.approach-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info, .contact-map {
    flex: 1;
}

.contact-info h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--text-color);
}

/* Form Section */
.order-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Custom Select Styling */
.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 30px;
}

.custom-select::after {
    content: '▼';
    font-size: 0.8em;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    pointer-events: none;
}

.date-select-container {
    display: flex;
    gap: 10px;
}

.date-select {
    flex: 1;
}

option {
    color: black;
    background-color: white;
}

/* Footer */
footer {
    background-color: var(--secondary-accent);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
}

.footer-col ul li a:hover {
    color: var(--primary-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

.cookie-content {
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    border: none;
}

.cookie-btn.primary {
    background-color: var(--primary-accent);
    color: white;
}

.cookie-btn.primary:hover {
    background-color: var(--secondary-accent);
}

.cookie-btn.secondary {
    background-color: #e0e0e0;
    color: var(--text-color);
}

.cookie-btn.secondary:hover {
    background-color: #c0c0c0;
}

/* Additional page styles */

/* About page */
#about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/Mca8m4.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.about-hero-content h1 {
    color: white;
    margin-bottom: 20px;
}

.about-content-full {
    max-width: 900px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.story-image, .story-text {
    flex: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.value-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.value-card a {
    color: var(--text-color);
}

.team-section {
    margin-bottom: 40px;
}

.cta-block {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
}

/* Blog page */
#blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/n0bAYR.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.blog-hero-content h1 {
    color: white;
    margin-bottom: 20px;
}

.blog-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.post-image img {
    width: 100%;
    height: auto;
}

.post-content {
    padding: 30px;
}

.post-meta {
    color: #777;
    font-style: italic;
    margin-bottom: 20px;
}

.post-content h2 {
    text-align: left;
}

.post-content h3 {
    margin-top: 30px;
}

.post-content a {
    color: var(--text-color);
}

/* Tips page */
#tips-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/JTYzRm.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.tips-hero-content h1 {
    color: white;
    margin-bottom: 20px;
}

.tips-content {
    max-width: 900px;
    margin: 0 auto;
}

.tip-section {
    margin-bottom: 40px;
}

.tip-section h2 {
    margin-bottom: 30px;
}

.tip-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.tip-card a {
    color: var(--text-color);
}

/* Policy pages */
.policy-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    text-align: center;
    margin-bottom: 30px;
}

.policy-content h2 {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.policy-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content a {
    color: var(--text-color);
}

.contact-info-terms {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

/* Thank You page */
.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-content a {
    color: var(--text-color);
}

.success-icon {
    font-size: 4rem;
    color: green;
    margin: 20px 0;
}

.next-steps {
    text-align: left;
    margin: 30px 0;
}

.next-steps ol {
    margin-left: 20px;
}

.next-steps li {
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.thank-you-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.thank-you-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .approach-content,
    .contact-content,
    .about-story {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--secondary-accent);
        padding: 20px;
        text-align: center;
    }
    
    .menu li {
        margin: 10px 0;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .menu-toggle:checked ~ .menu {
        display: flex;
    }
    
    #hero {
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    .burrito-grid,
    .reviews-grid,
    .benefits-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* Animation for cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.burrito-card,
.review-card,
.benefit-card,
.gallery-item {
    animation: fadeIn 0.6s ease-out forwards;
}
