/* Base Styles & Variables */
:root {
    --color-primary: #4B244A;
    --color-accent: #B7E778;
    --color-pink: #FCD4DC;
    --color-light: #FFF9ED;
    --color-blue: #20C3F0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.cookie-btn.accept {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.cookie-btn.settings {
    background-color: #eee;
    color: #333;
}

.cookie-banner.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--color-light);
    overflow-x: hidden;
    touch-action: pan-y;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-primary);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 249, 237, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(5px);
}

@media screen and (max-width: 768px) {
    header {
        position: relative;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    margin-left: 10px;
    margin-bottom: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary) 60%, var(--color-blue));
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
    background: linear-gradient(135deg, var(--color-blue), var(--color-primary));
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('img/wt699Y.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
}

.hero-content {
    flex: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* About Section */
.about-section {
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, rgba(75, 36, 74, 0.05), rgba(183, 231, 120, 0.1));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    margin-bottom: 15px;
}

/* Recipes Section */
.recipes-section {
    background-color: #fff;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.recipe-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.recipe-image {
    height: 200px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-content {
    padding: 20px;
}

.recipe-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.recipe-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.recipe-content ul li {
    margin-bottom: 5px;
    position: relative;
    list-style-type: disc;
}

.recipe-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 20px 0;
}

.recipe-card .cta-button {
    display: block;
    text-align: center;
    margin-top: 15px;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, rgba(75, 36, 74, 0.05), rgba(183, 231, 120, 0.1));
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: slideshow 16s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 4s;
}

.slide:nth-child(3) {
    animation-delay: 8s;
}

.slide:nth-child(4) {
    animation-delay: 12s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@keyframes slideshow {
    0%, 20% {
        opacity: 1;
    }
    25%, 95% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Why Us Section */
.why-us-section {
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--color-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(75, 36, 74, 0.05), rgba(183, 231, 120, 0.1));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
}

.quote {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.author {
    font-weight: 600;
    color: var(--color-primary);
    text-align: right;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-text {
    flex: 1;
}

.contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--color-light);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 10px 10px 0;
}

.contact-form {
    flex: 1;
    background-color: var(--color-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(183, 231, 120, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--color-blue), var(--color-primary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.footer-section {
    background-color: var(--color-primary);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 10px;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column h4 {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul li a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideRight 0.8s forwards;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(50px);
    animation: slideLeft 0.8s forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image,
    .about-text,
    .contact-text,
    .contact-form {
        width: 100%;
    }
    
    .contact-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-around;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 5px 15px;
    }
    
    .hero-section {
        padding-top: 30px;
        min-height: 70vh;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .slideshow-container {
        height: 300px;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .feature-item,
    .benefit-card,
    .testimonial-card,
    .recipe-card {
        margin-bottom: 20px;
    }
    
    .slideshow-container {
        height: 200px;
    }
}

/* Create SVG favicon */
@media (prefers-reduced-motion: reduce) {
    .animate-slide-up,
    .animate-slide-right,
    .animate-slide-left,
    .animate-fade-in,
    .slide {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
} 