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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

/* Hand-drawn style utilities */
.hand-drawn {
    position: relative;
}

.hand-drawn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #333;
    border-radius: 20px;
    transform: rotate(-1deg);
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #ff6b6b;
    transform: rotate(0.2deg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    display: block;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b6b;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff6b6b;
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: 120px 0 80px;
    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"><path d="M0,0 Q25,25 50,0 T100,0 L100,100 L0,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 200px 100px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.hero-text p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: rotate(-1deg);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px) rotate(1deg);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: #4ecdc4;
    color: white;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.btn-secondary:hover {
    background: #45b7aa;
    transform: translateY(-2px) rotate(1deg);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ff6b6b;
    border: 3px solid #ff6b6b;
}

.btn-outline:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-2px) rotate(1deg);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    transform: rotate(-0.5deg);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6b6b;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: #f8f9fa;
    position: relative;
}

.about-section::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"><circle cx="20" cy="20" r="2" fill="rgba(255,107,107,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(78,205,196,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,107,107,0.1)"/></svg>');
    background-size: 200px 200px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    transform: rotate(-0.5deg);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
    animation: wiggle 4s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* Services Section */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7aa);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    transform: rotate(-0.5deg);
}

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

/* Recipes Section */
.recipes-section {
    background: #f8f9fa;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: rotate(-1deg);
}

.recipe-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.recipe-card h3 {
    font-size: 1.4em;
    color: #333;
    margin: 20px 20px 10px;
    transform: rotate(-0.5deg);
}

.recipe-card p {
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.recipe-card .btn {
    margin: 0 20px 20px;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transform: rotate(1deg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4em;
    color: #ff6b6b;
    opacity: 0.3;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.testimonial-card p {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
    font-size: 1.1em;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9em;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    transform: rotate(-0.5deg);
}

.newsletter-content p {
    font-size: 1.1em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
}

.form-group input:focus {
    outline: none;
    transform: rotate(0.5deg) scale(1.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder {
    color: #999;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
    transform: rotate(-0.5deg);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    color: #ff6b6b;
    font-size: 1.1em;
}

.contact-item p {
    margin-top: 5px;
    color: #666;
    line-height: 1.6;
}

.social-media h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
    transform: rotate(-0.5deg);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.social-links a:hover {
    background: #ff5252;
    transform: translateY(-2px) rotate(1deg);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #ff6b6b;
    transform: rotate(-0.5deg);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: #ff6b6b;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    transform: rotate(-0.5deg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-document h2 {
    font-size: 1.8em;
    color: #333;
    margin: 40px 0 20px;
    transform: rotate(-0.5deg);
}

.legal-document h3 {
    font-size: 1.4em;
    color: #333;
    margin: 30px 0 15px;
    transform: rotate(-0.3deg);
}

.legal-document p {
    margin-bottom: 15px;
    color: #666;
}

.legal-document ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-document ul li {
    margin-bottom: 8px;
    color: #666;
}

.legal-document table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.legal-document table th,
.legal-document table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.legal-document table th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
}

.legal-document table tr:hover {
    background: #f8f9fa;
}

/* Blog Styles */
.blog-posts {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: rotate(-0.5deg);
}

.blog-card:hover {
    transform: translateY(-10px) rotate(0.5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #999;
}

.blog-meta .date {
    color: #ff6b6b;
}

.blog-meta .category {
    background: #ff6b6b;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
}

.blog-card h2 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    transform: rotate(-0.3deg);
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff5252;
}

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9em;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: white;
}

.article-header h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    transform: rotate(-0.5deg);
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9em;
    opacity: 0.9;
}

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

.article-image {
    text-align: center;
    margin-bottom: 40px;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 1.8em;
    color: #333;
    margin: 40px 0 20px;
    transform: rotate(-0.5deg);
}

.article-body h3 {
    font-size: 1.4em;
    color: #333;
    margin: 30px 0 15px;
    transform: rotate(-0.3deg);
}

.article-body p {
    margin-bottom: 20px;
    color: #666;
}

.article-body .lead {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body ul li,
.article-body ol li {
    margin-bottom: 8px;
    color: #666;
}

.article-tags {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.article-tags h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    margin: 0 5px 5px 0;
    border-radius: 15px;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #ff6b6b;
    color: white;
}

/* Related Articles */
.related-articles {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-articles h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 60px;
    transform: rotate(-0.5deg);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    transform: rotate(-0.5deg);
}

.related-card:hover {
    transform: translateY(-5px) rotate(0.5deg);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h3 {
    font-size: 1.2em;
    color: #333;
    margin: 20px 20px 10px;
    transform: rotate(-0.3deg);
}

.related-card a {
    display: inline-block;
    margin: 0 20px 20px;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.related-card a:hover {
    color: #ff5252;
}

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

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

.thank-you-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
}

.thank-you-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    transform: rotate(-0.5deg);
}

.thank-you-content .lead {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: 600;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    transform: rotate(-0.5deg);
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.next-steps a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
}

.next-steps a:hover {
    color: #45b7aa;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.popular-articles {
    padding: 80px 0;
    background: white;
}

.popular-articles h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 60px;
    transform: rotate(-0.5deg);
}

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

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

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

.article-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.article-card h3 {
    font-size: 1.2em;
    color: #333;
    margin: 20px 20px 10px;
    transform: rotate(-0.3deg);
}

.article-card p {
    color: #666;
    margin: 0 20px 15px;
    font-size: 0.9em;
}

.social-follow {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.social-follow h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    transform: rotate(-0.5deg);
}

.social-follow p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

.social-link {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 10px 10px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.social-link:hover {
    background: #ff5252;
    transform: translateY(-2px) rotate(1deg);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
    transform: rotate(-0.5deg);
}

.cookie-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 0;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 30px;
    transform: rotate(-0.5deg);
}

.cookie-option {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-option p {
    margin: 10px 0 0 32px;
    color: #666;
    font-size: 0.9em;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.modal-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .nav-brand {
        display: flex;
        align-items: center;
        z-index: 1001;
    }

    .nav-brand .logo {
        height: 40px;
        width: auto;
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

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

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero-text h1 {
        font-size: 2.5em;
    }

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

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

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

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

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

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .modal-content {
        margin: 20px;
        padding: 30px;
    }

    .modal-buttons {
        flex-direction: column;
    }

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

    .section-header h2 {
        font-size: 2em;
    }

    .page-header h1 {
        font-size: 2.2em;
    }

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

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

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

    .navbar .container {
        padding: 12px 15px;
    }

    .nav-brand .logo {
        height: 35px;
        width: auto;
        display: block;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-toggle span {
        width: 22px;
        height: 3px;
        background: #333;
        margin: 2px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .hero-text h1 {
        font-size: 2em;
    }

    .section-header h2 {
        font-size: 1.8em;
    }

    .service-card,
    .recipe-card,
    .testimonial-card {
        margin: 0 10px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .cookie-banner {
        left: 5px;
        right: 5px;
        bottom: 10px;
        padding: 15px;
    }

    .modal-content {
        margin: 10px;
        padding: 20px;
    }
}

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

    .hero {
        background: white;
        color: black;
    }

    .page-header {
        background: white;
        color: black;
    }

    .article-header {
        background: white;
        color: black;
    }

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

    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }

    .service-card,
    .recipe-card,
    .testimonial-card {
        border: 2px solid #333;
    }

    .hero,
    .page-header,
    .article-header {
        background: #000;
        color: #fff;
    }
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #ff6b6b;
    outline-offset: 2px;
}

/* Selection Styles */
::selection {
    background: #ff6b6b;
    color: white;
}

::-moz-selection {
    background: #ff6b6b;
    color: white;
}
