/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    font-size: 16px;
}

body {
    font-family: 'Arial', sans-serif;
    color: #121212;
    background: linear-gradient(135deg, #e5ffd3, #ffebeb);
    background-attachment: fixed;
    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;
    border-radius: 8px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #6d1c00;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffbf00;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    color: #6d1c00;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffbf00;
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #6d1c00;
    text-decoration: none;
}

.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    display: flex;
    gap: 1.5rem;
}

.desktop-nav a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffbf00;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.menu-checkbox {
    display: none;
}

.menu-toggle-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle-label span {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    background-color: #6d1c00;
    transition: all 0.3s ease;
}

.mobile-nav-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-checkbox:checked ~ .mobile-nav-container {
    height: 320px;
}

.menu-checkbox:checked + .menu-toggle-label span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-checkbox:checked + .menu-toggle-label span:nth-child(2) {
    opacity: 0;
}

.menu-checkbox:checked + .menu-toggle-label span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    background: url('./img/BCT0TS.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #ffbf00;
    color: #6d1c00;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: none;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: #6d1c00;
    color: #ffbf00;
    border-color: #ffbf00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-button {
    display: inline-block;
    color: #fff;
    background-color: #6d1c00;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #6d1c00;
}

.text-button:hover {
    background-color: #ffbf00;
    color: #6d1c00;
    border-color: #ffbf00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.8)" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,128C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') center/cover;
    opacity: 0.5;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-image {
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: #6d1c00;
    font-size: 1.3rem;
    margin-top: 15px;
}

/* Benefits Section */
.benefits-section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #ffebeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Reviews Section */
.reviews-section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffbf00;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.reviewer {
    font-style: italic;
    margin-top: 20px;
    text-align: right;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

details {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

summary {
    padding: 20px;
    position: relative;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    color: #6d1c00;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #ffbf00;
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 20px;
}

/* Special Offer Section */
.special-section {
    padding: 100px 0;
    position: relative;
    text-align: center;
    background: url('./img/41Vb01.jpg') center/cover;
}

.special-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.special-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: rgba(109, 28, 0, 0.8);
    border-radius: 12px;
    border: 2px solid #ffbf00;
}

.special-content h2 {
    color: #ffbf00;
}

.offer-dates {
    font-style: italic;
    margin: 20px 0;
    font-size: 1.1rem;
}

/* Order Form Section */
.order-section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 100px 0;
}

.order-form {
    max-width: 700px;
    margin: 50px auto 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #6d1c00;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.date-selects,
.time-selects {
    display: flex;
    gap: 10px;
    align-items: center;
}

.date-selects select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: white;
}

.time-selects select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: white;
}

.time-selects span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #6d1c00;
}

.form-group select {
    background-color: white;
    color: black;
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-button {
    background-color: #6d1c00;
    color: #fff;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #ffbf00;
    color: #6d1c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #3e3e3e;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

footer .logo {
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-info p {
    color: #ddd;
    line-height: 1.5;
}

footer h3 {
    color: #ffbf00;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: #ffbf00;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ddd;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #ffbf00;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Simple Pages (About, Blog, Tips) */
.simple-page, .policy-section {
    padding: 120px 0 80px;
    background-color: rgba(255, 255, 255, 0.8);
}

.simple-page h1, .policy-section h1 {
    text-align: center;
    margin-bottom: 30px;
}

.simple-content, .policy-content {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.7;
    border: 2px solid #6d1c00;
    border-radius: 15px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.simple-content p {
    margin-bottom: 20px;
}

.simple-content ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.simple-content ul li {
    margin-bottom: 10px;
}

.text-center {
    text-align: center;
}

/* Blog specific */
.blog-meta {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

.blog-meta span {
    margin: 0 10px;
}

/* Thanks page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background-color: rgba(255, 255, 255, 0.8);
}

.thanks-heading {
    text-align: center;
    margin-bottom: 30px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid #6d1c00;
    border-radius: 15px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thanks-message {
    margin: 30px 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.thanks-action {
    margin-top: 40px;
}

/* Cookie Consent Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-popup.visible {
    display: block;
    animation: slideUp 0.5s forwards;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-button {
    background-color: #ffbf00;
    color: #6d1c00;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.cookie-button:hover {
    background-color: #6d1c00;
    color: #ffbf00;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Benefit Icons */
.fresh-ingredients {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d1c00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
}

.authentic-recipes {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d1c00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18'/%3E%3Crect x='3' y='10' width='18' height='8' rx='1'/%3E%3Cpath d='M6 10V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
}

.dietary-options {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d1c00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z'/%3E%3Cpath d='M4 13h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
}

.eco-friendly {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d1c00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8z'/%3E%3Cpath d='M15 9l-4.5 4.5L9 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .menu-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .menu-toggle-label {
        display: flex;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .order-form {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        width: 95%;
    }
    
    .hero {
        min-height: calc(100vh - 60px);
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-cards, .benefits-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .special-content {
        padding: 30px 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 15px;
        border-radius: 8px;
    }
    
    .cookie-content {
        gap: 10px;
    }
    
    .simple-content, .policy-content {
        padding: 20px;
        margin-left: 10px;
        margin-right: 10px;
    }
}
