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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

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

a:hover {
    color: #ffb533;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: #ffa200;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #ffb533;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 162, 0, 0.3);
}

.btn-secondary {
    background-color: #333333;
    color: #ffffff;
    border: 2px solid #555555;
}

.btn-secondary:hover {
    background-color: #555555;
    border-color: #ffa200;
    color: #ffa200;
}

.btn-outline {
    background-color: transparent;
    color: #ffa200;
    border: 2px solid #ffa200;
}

.btn-outline:hover {
    background-color: #ffa200;
    color: #1a1a1a;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-menu a {
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: #222222;
}

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

.section-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: block;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #aaaaaa;
}

/* Page Header */
.page-header {
    padding: 6rem 0 3rem;
    background-color: #222222;
    text-align: center;
}

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

.page-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: block;
}

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

.about-text h3 {
    color: #ffa200;
    margin-bottom: 0.5rem;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: #333333;
    border-radius: 8px;
    border: 2px solid #444444;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: #ffa200;
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffa200;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaaaaa;
}

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

.advantage-card {
    text-align: center;
    padding: 2rem;
    background-color: #333333;
    border-radius: 12px;
    border: 2px solid #444444;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: #ffa200;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 162, 0, 0.2);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: block;
}

.advantage-card h3 {
    color: #ffa200;
    margin-bottom: 1rem;
}

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

.recipe-card {
    background-color: #333333;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #444444;
    transition: all 0.3s ease;
}

.recipe-card:hover {
    border-color: #ffa200;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 162, 0, 0.2);
}

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

.recipe-content {
    padding: 1.5rem;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.recipe-meta span {
    background-color: #ffa200;
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.cooking-time {
    background-color: #4CAF50 !important;
}

.difficulty {
    background-color: #2196F3 !important;
}

.portions {
    background-color: #9C27B0 !important;
}

.recipe-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #555555;
}

.recipe-details h4 {
    color: #ffa200;
    margin: 1rem 0 0.5rem;
    font-size: 1rem;
}

.recipe-details ul,
.recipe-details ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.recipe-details li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

/* Recipe Filters */
.recipe-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: #333333;
    border: 2px solid #555555;
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #ffa200;
    border-color: #ffa200;
    color: #1a1a1a;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: #333333;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #444444;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #3a3a3a;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ffa200;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* Forms */
.newsletter-content,
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #444444;
    border-radius: 6px;
    background-color: #333333;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: #ffa200;
    margin-bottom: 0.5rem;
}

/* History Timeline */
.history-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
    border-left: 3px solid #ffa200;
    margin-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 2rem;
    width: 13px;
    height: 13px;
    background-color: #ffa200;
    border-radius: 50%;
}

.timeline-content {
    margin-left: 2rem;
    background-color: #333333;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #444444;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #ffa200;
    transform: translateX(10px);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.timeline-content ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.timeline-content li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

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

.region-card {
    text-align: center;
    padding: 2rem;
    background-color: #333333;
    border-radius: 12px;
    border: 2px solid #444444;
    transition: all 0.3s ease;
}

.region-card:hover {
    border-color: #ffa200;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 162, 0, 0.2);
}

.region-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: block;
}

.region-card h3 {
    color: #ffa200;
    margin-bottom: 1rem;
}

/* Development Section */
.development-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.development-text h3 {
    color: #ffa200;
    margin: 1.5rem 0 1rem;
}

.development-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.development-text li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.development-text li strong {
    color: #ffa200;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: #333333;
    border-radius: 12px;
    border: 2px solid #444444;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #ffa200;
    transform: translateY(-5px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: block;
}

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

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #aaaaaa;
}

/* Thank You Page */
.thank-you-section {
    padding: 6rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: block;
}

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

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

.step {
    text-align: center;
    padding: 2rem;
    background-color: #333333;
    border-radius: 12px;
    border: 2px solid #444444;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: block;
}

.step h3 {
    color: #ffa200;
    margin-bottom: 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #333333;
    border-radius: 12px;
    border: 2px solid #444444;
}

.contact-reminder h3 {
    color: #ffa200;
    margin-bottom: 1rem;
}

.contact-reminder .contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

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

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #333333;
    border-radius: 8px;
    border: 2px solid #444444;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.social-link:hover {
    border-color: #ffa200;
    color: #ffa200;
    transform: translateY(-3px);
}

.social-link img {
    width: 24px;
    height: 24px;
}

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

.legal-content h2 {
    color: #ffa200;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #ffffff;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.legal-content strong {
    color: #ffa200;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background-color: #333333;
    border-radius: 8px;
    overflow: hidden;
}

.legal-content th,
.legal-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #444444;
}

.legal-content th {
    background-color: #ffa200;
    color: #1a1a1a;
    font-weight: 600;
}

.cookie-settings-link {
    text-align: center;
    margin: 2rem 0;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333333;
}

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

.footer-section h3 {
    color: #ffa200;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
}

.footer-logo .logo-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ffa200;
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 10000;
    border-top: 2px solid #ffa200;
    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 {
    color: #ffa200;
    margin-bottom: 1rem;
}

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

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

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

.cookie-modal-content {
    background-color: #333333;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #ffa200;
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #444444;
    border-radius: 8px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ffa200;
}

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

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

/* Utility Classes */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.hidden {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

    .hero-content p {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

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

    .development-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .timeline-item {
        margin-left: 1rem;
    }

    .timeline-content {
        margin-left: 1rem;
    }

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

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

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .section {
        padding: 3rem 0;
    }

    .page-header {
        padding: 5rem 0 2rem;
    }

    .advantage-card,
    .recipe-card,
    .region-card {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .cookie-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nav-logo {
        font-size: 1rem;
    }
    .cookies-table {
        display: none;
    }
}
