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

:root {
    --primary-color: #f2190a;
    --secondary-color: #121111;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --font-family: 'Arial', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

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

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

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

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 2rem;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

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

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.section.bg-light {
    background-color: var(--light-gray);
}

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

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

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.section-title .section-icon {
    margin-right: 15px;
    margin-bottom: 0;
}

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

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    font-size: 1.1rem;
}

.content-visual {
    text-align: center;
}

.content-image {
    width: 200px;
    height: 200px;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

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

.recipe-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.recipe-content {
    padding: 30px;
}

.recipe-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.recipe-content p {
    margin-bottom: 20px;
    color: var(--gray);
}

/* Popular Recipes */
.recipe-list {
    max-width: 600px;
    margin: 0 auto;
}

.recipe-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.recipe-item:hover {
    transform: translateX(5px);
}

.recipe-thumb {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: var(--border-radius);
}

.recipe-info h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.recipe-info p {
    color: var(--gray);
    margin: 0;
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.review-stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.review-card cite {
    font-weight: bold;
    color: var(--primary-color);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--gray);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--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 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cccccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    color: #cccccc;
    transition: var(--transition);
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Cookie Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

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

.modal-content h3 {
    margin-bottom: 20px;
    text-align: center;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cookie-category label:hover {
    background-color: var(--light-gray);
}

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

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

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.checkmark {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

/* Recipe Categories */
.recipe-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Detailed Recipes */
.recipes-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.recipe-detailed {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.recipe-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 40px;
    align-items: center;
}

.recipe-main-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.recipe-meta span {
    background: var(--light-gray);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--gray);
}

.recipe-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.recipe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 40px 40px;
}

.ingredients h4,
.instructions h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.ingredients h5 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.ingredients ul,
.instructions ol {
    padding-left: 20px;
}

.ingredients li,
.instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Quick Recipes */
.quick-recipes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quick-recipe-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
}

.quick-recipe-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-recipe-image {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.quick-recipe-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.quick-ingredients {
    background: var(--light-gray);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Soup Recipes */
.soup-recipes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.soup-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.soup-card:hover {
    transform: translateY(-3px);
}

.soup-image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.soup-ingredients {
    background: var(--light-gray);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Article Styles */
.content-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.article-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
}

.highlight-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.highlight-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.styled-list {
    padding-left: 20px;
    margin: 20px 0;
}

.styled-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 5%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: 5%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Modern Features */
.modern-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Influences Grid */
.influences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.influence-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.influence-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.influence-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Regions Grid */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.region-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-3px);
}

.region-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.region-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* National Recipe Styles */
.national-recipe {
    margin-bottom: 60px;
}

.recipe-showcase {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.showcase-content {
    padding: 40px;
}

.recipe-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.recipe-story {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--gray);
}

.recipe-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.recipe-details h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.recipe-details ul {
    padding-left: 20px;
}

.recipe-details li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* National Soups */
.national-soups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.soup-national-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

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

.soup-national-content {
    padding: 30px;
}

.soup-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.soup-features {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.feature {
    background: var(--light-gray);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Regional Specialties */
.regional-specialties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.specialty-region {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.specialty-region h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.specialty-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.specialty-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.specialty-info h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.specialty-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Holiday Traditions */
.holiday-traditions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.holiday-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

.holiday-content {
    padding: 30px;
}

.holiday-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.holiday-dishes h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.holiday-dishes ul {
    padding-left: 20px;
}

.holiday-dishes li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* CTA Content */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

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

/* Contact Page Styles */
.contact-info-section {
    margin-bottom: 60px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    margin-bottom: 15px;
}

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

.contact-detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-detail-card:hover {
    transform: translateY(-3px);
}

.contact-detail-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contact-detail-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-hours,
.contact-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 10px;
}

/* Contact Form */
.contact-form-section {
    margin-bottom: 60px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.main-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* FAQ Styles */
.faq-section {
    margin-bottom: 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    margin: 0;
    color: var(--secondary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

/* Social Media Section */
.social-section {
    margin-bottom: 60px;
}

.social-header {
    text-align: center;
    margin-bottom: 40px;
}

.social-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

.social-link-card {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-link-card:hover {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.social-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.social-icon-wrapper.facebook {
    background: #1877f2;
}

.social-icon-wrapper.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-wrapper.youtube {
    background: #ff0000;
}

.social-platform-icon {
    width: 30px;
    height: 30px;
}

.social-content h3 {
    margin-bottom: 5px;
}

.social-content p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Newsletter Subscription */
.newsletter-subscription {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.newsletter-signup-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.newsletter-preferences {
    margin-bottom: 30px;
}

.newsletter-preferences h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.preferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.preference-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.preference-item:hover {
    background: #e9ecef;
}

.preference-item input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 30px;
}

.success-icon {
    width: 100px;
    height: 100px;
    color: var(--success);
}

.thank-you-section h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
}

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

.detail-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.detail-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.detail-content h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.detail-content p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Recommended Content */
.recommended-content {
    text-align: center;
}

.recommended-content h2 {
    margin-bottom: 10px;
}

.recommended-content p {
    margin-bottom: 40px;
    color: var(--gray);
}

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

.recommended-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.recommended-card:hover {
    transform: translateY(-3px);
}

.recommended-image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.recommended-content-text h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.recommended-content-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

/* Social Follow */
.social-follow {
    text-align: center;
}

.social-follow-content {
    margin-bottom: 40px;
}

.social-follow-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.social-follow-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-follow-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-follow-link:hover {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.social-follow-link.facebook:hover {
    background: #1877f2;
    color: var(--white);
}

.social-follow-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-follow-link.youtube:hover {
    background: #ff0000;
    color: var(--white);
}

.social-follow-link-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* FAQ Preview */
.faq-preview {
    text-align: center;
}

.faq-preview h2 {
    margin-bottom: 40px;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-preview-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: left;
}

.faq-preview-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-preview-item p {
    margin: 0;
    color: var(--gray);
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-intro {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.legal-list {
    padding-left: 20px;
    margin: 20px 0;
}

.legal-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-box {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.legal-footer {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    font-style: italic;
    color: var(--gray);
}

/* Cookie Policy Specific */
.cookie-types {
    margin: 20px 0;
}

.cookie-category {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px 0;
}

.cookie-category h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cookie-details {
    margin-top: 15px;
}

.cookie-details h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.cookie-management {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.cookie-management h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.third-party-cookies {
    margin: 20px 0;
}

.third-party-cookies h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.functionality-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.impact-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.impact-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cookie-settings-section {
    text-align: center;
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0;
}

.cookie-settings-section h2 {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .recipe-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .recipe-showcase {
        grid-template-columns: 1fr;
    }
    
    .showcase-image {
        height: 250px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 20px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .recipe-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recipe-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .social-follow-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
    }
    
    .section-title .section-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .recipe-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .advantages-grid,
    .recipes-grid,
    .quick-recipes,
    .soup-recipes {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .recommended-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .preferences-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form-grid, .national-soups, .holiday-traditions, .regional-specialties {
        grid-template-columns: 1fr;
    }
    .nav-brand {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal,
    .hamburger,
    .btn {
        display: none !important;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .page-header {
        background: none !important;
        color: var(--secondary-color) !important;
        padding: 20px 0;
    }
    
    .hero {
        height: auto;
        background: none !important;
        color: var(--secondary-color) !important;
        padding: 20px 0;
    }
    
    .hero-content {
        color: var(--secondary-color) !important;
    }
}

/* 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) {
    :root {
        --primary-color: #000000;
        --secondary-color: #000000;
        --light-gray: #ffffff;
        --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link.active::after {
        height: 3px;
    }
}

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

.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
