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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kalam', cursive;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #faf9f6;
    overflow-x: hidden;
}

/* Hand-drawn style variables */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-color: #2c3e50;
    --bg-color: #faf9f6;
    --cream-color: #fff8dc;
    --warm-red: #dc143c;
    --forest-green: #228B22;
    --gold: #ffd700;
    --hand-drawn-border: 3px solid #8B4513;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

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

/* Hand-drawn elements */
.hand-drawn {
    position: relative;
    border: var(--hand-drawn-border);
    border-radius: 15px;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.hand-drawn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    transform: rotate(1deg);
    z-index: -1;
}

.hand-drawn:hover {
    transform: rotate(0deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border: 3px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    transform: rotate(-1deg);
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
    box-shadow: 4px 4px 0 var(--secondary-color);
}

.btn:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 6px 6px 0 var(--secondary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    border-color: var(--primary-color);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23D2691E" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%238B4513" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23CD853F" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    transform: rotate(2deg);
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

/* Sections */
section {
    padding: 80px 0;
}

.recipes {
    background: var(--bg-color);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.recipe-card {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 1.5rem;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--secondary-color);
}

.recipe-card:nth-child(even) {
    transform: rotate(1deg);
}

.recipe-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--secondary-color);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.recipe-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    transform: rotate(-2deg);
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

/* Services Section */
.services {
    background: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--accent-color);
}

.service-card:nth-child(even) {
    transform: rotate(-1deg);
}

.service-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

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

.service-icon img {
    width: 80px;
    height: 80px;
}

/* Blog Section */
.blog {
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 1.5rem;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--secondary-color);
}

.blog-card:nth-child(even) {
    transform: rotate(1deg);
}

.blog-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--secondary-color);
}

.blog-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--secondary-color);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.blog-link {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border: 3px solid var(--forest-green);
    border-radius: 20px;
    padding: 2rem;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--accent-color);
}

.testimonial-card:nth-child(even) {
    transform: rotate(-1deg);
}

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    transform: rotate(-1deg);
    box-shadow: 5px 5px 0 var(--secondary-color);
}

.contact-form {
    background: white;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    transform: rotate(1deg);
    box-shadow: 5px 5px 0 var(--accent-color);
}

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

.contact-item strong {
    color: var(--primary-color);
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    background: var(--cream-color);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    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: var(--gold);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

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

.social-links a {
    padding: 0.5rem;
    border: 2px solid white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 2px solid var(--secondary-color);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    z-index: 1001;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 1rem;
}

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

.cookie-modal-content {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    background: var(--cream-color);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Article Pages */
.article-page {
    padding-top: 80px;
}

.article-header {
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
    padding: 80px 0;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.article-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    font-style: italic;
}

.article-content {
    padding: 80px 0;
}

.article-image {
    text-align: center;
    margin-bottom: 3rem;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 5px 5px 0 var(--secondary-color);
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.article-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.article-navigation {
    padding: 40px 0;
    background: var(--cream-color);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* Subscription Form */
.subscription-form {
    padding: 80px 0;
    background: var(--bg-color);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-content {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    transform: rotate(-1deg);
    box-shadow: 5px 5px 0 var(--secondary-color);
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    color: var(--forest-green);
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    background: var(--cream-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.form-image img {
    width: 100%;
    height: auto;
    transform: rotate(2deg);
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

/* Thank You Page */
.thank-you {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
    text-align: center;
}

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

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

.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.next-steps {
    margin-bottom: 3rem;
}

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

.step {
    background: white;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--accent-color);
}

.step:nth-child(even) {
    transform: rotate(1deg);
}

.step:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: var(--bg-color);
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--secondary-color);
}

/* Cookie Settings */
.cookie-settings-section {
    background: var(--cream-color);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.cookie-controls {
    margin-bottom: 2rem;
}

.cookie-controls .cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    background: white;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--secondary-color);
}

.cookie-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background: var(--cream-color);
}

/* Blog Pages */
.blog-articles {
    padding: 80px 0;
    background: var(--bg-color);
}

.blog-articles .blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.blog-image {
    overflow: hidden;
    border-radius: 15px;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-content h2 a:hover {
    color: var(--secondary-color);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.blog-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
}

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

.category-card {
    background: white;
    border: 3px solid var(--forest-green);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--accent-color);
}

.category-card:nth-child(even) {
    transform: rotate(1deg);
}

.category-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.newsletter-signup {
    padding: 80px 0;
    background: var(--bg-color);
    text-align: center;
}

/* Newsletter Preview */
.newsletter-preview {
    padding: 80px 0;
    background: var(--bg-color);
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.preview-mock {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    transform: rotate(-1deg);
    box-shadow: 5px 5px 0 var(--secondary-color);
}

.preview-header {
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.preview-section {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--cream-color);
    border-radius: 10px;
}

.newsletter-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* About Page Specific */
.about-detailed {
    padding: 80px 0;
    background: var(--bg-color);
}

.team {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
}

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

.team-member {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--secondary-color);
}

.team-member:nth-child(even) {
    transform: rotate(1deg);
}

.team-member:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--secondary-color);
}

.values {
    padding: 80px 0;
    background: var(--bg-color);
}

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

.value-card {
    background: white;
    border: 3px solid var(--forest-green);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--accent-color);
}

.value-card:nth-child(even) {
    transform: rotate(-1deg);
}

.value-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.company-info {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Thank You Page Specific */
.while-you-wait {
    padding: 80px 0;
    background: var(--bg-color);
}

.content-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.suggestion-card {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--secondary-color);
}

.suggestion-card:nth-child(even) {
    transform: rotate(1deg);
}

.suggestion-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--secondary-color);
}

.suggestion-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-color) 0%, #f5f5dc 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--accent-color);
}

.faq-item:nth-child(even) {
    transform: rotate(-1deg);
}

.faq-item:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--accent-color);
}

.contact-info {
    padding: 80px 0;
    background: var(--bg-color);
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-details .contact-item {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-container {
        grid-template-columns: 1fr;
    }

    .preview-content {
        grid-template-columns: 1fr;
    }

    .blog-articles .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .thank-you h1 {
        font-size: 2rem;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 1.1rem;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for hand-drawn elements */
@keyframes handDrawn {
    0% {
        transform: rotate(-1deg);
    }
    25% {
        transform: rotate(1deg);
    }
    50% {
        transform: rotate(-0.5deg);
    }
    75% {
        transform: rotate(0.5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.hand-drawn-animation {
    animation: handDrawn 2s ease-in-out infinite;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .cookie-banner,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hand-drawn,
    .recipe-card,
    .service-card,
    .blog-card,
    .testimonial-card {
        border: 1px solid #000;
        box-shadow: none;
        transform: none;
    }
}
