/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #8B4513;
    --color-secondary: #D2691E;
    --color-accent: #CD853F;
    --color-warm-dark: #654321;
    --color-warm-light: #F4A460;
    --color-cream: #FFF8DC;
    --color-text: #3E2723;
    --color-text-light: #5D4037;
    --color-border: #A0522D;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Arial', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-cream);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(139, 69, 19, 0.03) 35px, rgba(139, 69, 19, 0.03) 70px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-warm-dark) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-family: var(--font-primary);
    color: var(--color-cream);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.decorative-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-warm-light);
    margin-top: 5px;
    position: relative;
}

.decorative-line::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--color-warm-light);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

/* Navigation */
.nav {
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-cream);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-cream);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-warm-light);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-warm-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(101, 67, 33, 0.9) 50%, rgba(139, 69, 19, 0.9) 100%),
                repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 248, 220, 0.05) 10px, rgba(255, 248, 220, 0.05) 20px);
    color: var(--color-cream);
    text-align: center;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 248, 220, 0.1) 50px, rgba(255, 248, 220, 0.1) 52px);
    pointer-events: none;
}

.vintage-frame {
    position: relative;
    padding: 3rem;
    border: 4px double var(--color-cream);
    background: rgba(139, 69, 19, 0.3);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.vintage-frame::before,
.vintage-frame::after {
    content: '❋';
    position: absolute;
    font-size: 2rem;
    color: var(--color-warm-light);
}

.vintage-frame::before {
    top: 10px;
    left: 10px;
}

.vintage-frame::after {
    bottom: 10px;
    right: 10px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: var(--color-cream);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

/* Sections */
.intro-section,
.soups-section,
.ingredients-section,
.history-timeline,
.events-section,
.about-section,
.contact-section,
.privacy-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-content h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.decorative-image {
    width: 100%;
    border-radius: 8px;
    border: 3px solid var(--color-border);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.decorative-image:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    background: linear-gradient(to bottom, var(--color-cream), #F5E6D3);
    padding: 4rem 0;
}

.section-title {
    font-family: var(--font-primary);
    color: var(--color-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--color-secondary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--color-primary);
    color: var(--color-cream);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-secondary);
    color: var(--color-cream);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--color-warm-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Soups Grid */
.soups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.soup-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--color-border);
}

.soup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.soup-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--color-accent);
}

.soup-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.soup-card:hover .soup-image-wrapper img {
    transform: scale(1.1);
}

.soup-content {
    padding: 1.5rem;
}

.soup-content h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.region-tag {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-cream);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.soup-features {
    list-style: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-accent);
}

.soup-features li {
    padding: 0.3rem 0;
    color: var(--color-text-light);
    position: relative;
    padding-left: 1.5rem;
}

.soup-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.btn-recipe {
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: var(--color-primary);
    color: var(--color-cream);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    width: 100%;
}

.btn-recipe:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Recipe Modal */
.recipe-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.recipe-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--color-cream);
    margin: auto;
    padding: 2.5rem;
    border: 3px solid var(--color-border);
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    z-index: 10;
}

.modal-close:hover {
    color: var(--color-secondary);
}

.recipe-content h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-accent);
}

.recipe-content .recipe-region {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-cream);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.recipe-content .recipe-ingredients,
.recipe-content .recipe-steps {
    margin: 2rem 0;
}

.recipe-content .recipe-ingredients h3,
.recipe-content .recipe-steps h3 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.recipe-content .recipe-ingredients ul {
    list-style: none;
    padding-left: 0;
}

.recipe-content .recipe-ingredients li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-text-light);
}

.recipe-content .recipe-ingredients li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 1.5rem;
    line-height: 1;
}

.recipe-content .recipe-steps ol {
    padding-left: 2rem;
}

.recipe-content .recipe-steps li {
    padding: 0.8rem 0;
    color: var(--color-text-light);
    line-height: 1.6;
}

.recipe-content .recipe-tips {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    color: var(--color-cream);
}

.recipe-content .recipe-tips h3 {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    color: var(--color-cream);
}

.recipe-content .recipe-tips p {
    margin: 0.5rem 0;
    color: var(--color-cream);
}

/* Ingredients Section */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ingredient-category {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ingredient-category h3 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.preparation-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--color-accent);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-primary);
}

.step-content h3 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.recipe-highlight {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    padding: 2.5rem;
    border-radius: 8px;
    color: var(--color-cream);
}

.recipe-highlight h2 {
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* History Timeline */
.history-timeline {
    background: linear-gradient(to bottom, var(--color-cream), #F5E6D3);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--color-secondary);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border: 4px solid var(--color-cream);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--color-secondary);
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--color-border);
}

.timeline-content h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: var(--color-secondary);
    font-weight: bold;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Cultural Significance */
.significance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.significance-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--color-primary);
}

.significance-card h3 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Events Section */
.regions-overview {
    margin-bottom: 4rem;
}

.regions-overview h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.region-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--color-secondary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.region-card h3 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.region-location {
    color: var(--color-secondary);
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.region-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.events-list h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-secondary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.event-date {
    flex-shrink: 0;
    text-align: center;
    background: var(--color-primary);
    color: var(--color-cream);
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: var(--font-primary);
}

.event-content h3 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.event-location {
    color: var(--color-secondary);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.event-features {
    list-style: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-accent);
}

.event-features li {
    padding: 0.3rem 0;
    color: var(--color-text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.event-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 1.2rem;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--color-primary);
    text-align: center;
}

.value-card h3 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-layout,
.contact-layout-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-layout-simple {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.info-item a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.contact-form-wrapper,
.contact-additional,
.privacy-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--color-border);
}

.contact-additional h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.contact-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(210, 105, 30, 0.1));
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
}

.link-primary {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.link-primary:hover {
    color: var(--color-secondary);
}

.privacy-form-section {
    margin-top: 3rem;
}

.privacy-form-section h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.contact-form-wrapper h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--color-accent);
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Privacy Section */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-border);
}

.privacy-section-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-accent);
}

.privacy-section-item:last-child {
    border-bottom: none;
}

.privacy-section-item h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-section-item ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.privacy-section-item li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.last-updated {
    font-style: italic;
    color: var(--color-secondary);
    text-align: right;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--color-warm-dark);
    color: var(--color-cream);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    color: var(--color-warm-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-cream);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--color-warm-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 248, 220, 0.3);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        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);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-warm-dark);
        flex-direction: column;
        padding: 4rem 1rem 1rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 248, 220, 0.2);
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-grid,
    .two-column-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 3rem;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: 100%;
    }

    .soups-grid,
    .events-grid,
    .regions-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .vintage-frame {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.4rem;
    }

    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .intro-section,
    .soups-section,
    .ingredients-section,
    .history-timeline,
    .events-section,
    .about-section,
    .contact-section,
    .privacy-section {
        padding: 2rem 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

