/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f5;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #444;
    font-size: 1.1rem;
}

a {
    color: #DC143C;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #B8860B;
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255,255,255,0.2);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF8E7 0%, #F5DEB3 100%);
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #8B4513;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #654321;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #DC143C 0%, #B8860B 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    color: white;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #DC143C;
    padding: 1rem 2rem;
    border: 2px solid #DC143C;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.secondary-button:hover {
    background: #DC143C;
    color: white;
    text-decoration: none;
}

/* Section Styles */
.about-section,
.recipes-section,
.reviews-section,
.newsletter-section,
.contact-section {
    padding: 4rem 0;
}

.about-section {
    background: white;
}

.recipes-section {
    background: linear-gradient(135deg, #FFF8E7 0%, #F5F5DC 100%);
}

.reviews-section {
    background: white;
}

.newsletter-section {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: white;
}

.contact-section {
    background: #F5F5DC;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FFF8E7 0%, #F5DEB3 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #DC143C;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #8B4513;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #FFF8E7 0%, #F5DEB3 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #DC143C;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #444;
}

.review-author {
    font-weight: bold;
    color: #8B4513;
    text-align: right;
}

/* Newsletter Section */
.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text {
    text-align: center;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.newsletter-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    cursor: pointer;
    gap: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.checkbox-label a {
    color: #FFD700;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #8B4513;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: #DC143C;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B4513;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #DC143C;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2F2F2F 0%, #1C1C1C 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2F2F2F 0%, #1C1C1C 100%);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    color: #ccc;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.primary {
    background: #DC143C;
    color: white;
}

.cookie-btn.secondary {
    background: #666;
    color: white;
}

.cookie-btn.tertiary {
    background: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #8B4513;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.modal-body {
    padding: 2rem;
}

.cookie-category {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #DC143C;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #666;
    cursor: not-allowed;
}

.category-info h4 {
    margin: 0 0 0.5rem 0;
    color: #8B4513;
}

.category-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, #FFF8E7 0%, #F5DEB3 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.blog-hero-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.blog-articles {
    padding: 4rem 0;
    background: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-content {
    padding: 2rem;
}

.article-date {
    color: #999;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.article-card h3 {
    margin-bottom: 1rem;
}

.article-card h3 a {
    color: #8B4513;
    text-decoration: none;
}

.article-card h3 a:hover {
    color: #DC143C;
}

.read-more {
    color: #DC143C;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Article Page Styles */
.article-page {
    padding: 8rem 0 4rem;
    background: white;
}

.article-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    color: #999;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #DC143C;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.article-content {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-text {
    line-height: 1.8;
}

.article-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #8B4513;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.article-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #DC143C;
}

.article-text ul,
.article-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-text li {
    margin-bottom: 0.5rem;
}

.recipe-box {
    background: linear-gradient(135deg, #FFF8E7 0%, #F5DEB3 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #DC143C;
    margin: 2rem 0;
}

.recipe-box h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.recipe-box ul,
.recipe-box ol {
    margin-bottom: 1.5rem;
}

blockquote {
    background: #f9f9f9;
    border-left: 5px solid #DC143C;
    margin: 2rem 0;
    padding: 1rem 2rem;
    font-style: italic;
    color: #666;
}

.article-sidebar {
    position: sticky;
    top: 8rem;
    height: fit-content;
}

.related-articles,
.share-article {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.related-articles h3,
.share-article h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.5rem;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.email {
    background: #666;
}

.article-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-blog {
    color: #DC143C;
    font-weight: 500;
}

.article-nav-links {
    display: flex;
    gap: 2rem;
}

.prev-article,
.next-article {
    color: #DC143C;
    font-weight: 500;
}

/* Thank You Pages */
.thank-you-section {
    padding: 8rem 0 4rem;
    background: white;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.thank-you-details,
.contact-info-box {
    background: linear-gradient(135deg, #FFF8E7 0%, #F5DEB3 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
}

.thank-you-details h3,
.contact-info-box h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    text-align: center;
}

.thank-you-details ul {
    list-style: none;
    padding: 0;
}

.thank-you-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.thank-you-details li:last-child {
    border-bottom: none;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.thank-you-actions {
    margin-top: 3rem;
}

/* Legal Pages */
.legal-section {
    padding: 8rem 0 4rem;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-text {
    line-height: 1.8;
}

.legal-text h2 {
    color: #8B4513;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text ol,
.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text strong {
    color: #DC143C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content,
    .newsletter-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-nav-links {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .secondary-button {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .article-sidebar,
    .article-navigation,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .article-page {
        padding: 2rem 0;
    }
    
    .article-content {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #DC143C;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-banner {
        background: white;
        color: black;
    }
    
    .navbar {
        background: black;
    }
    
    .cta-button {
        background: black;
        border: 2px solid black;
    }
}
