/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAF7F2;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 15px 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.btn-cookie {
    background: #DAA520;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #B8860B;
}

/* Header and Navigation */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #DAA520;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FAF7F2 0%, #F0E6D2 100%);
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #DAA520;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #B8860B;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

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

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-card h3 {
    color: #8B4513;
    margin: 20px 0 15px;
    font-size: 1.5rem;
}

/* About Section */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text h3 {
    color: #DAA520;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section {
    margin-top: 80px;
}

.team-section h2 {
    text-align: center;
    color: #8B4513;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background: #FAF7F2;
    border-radius: 10px;
}

.team-member h3 {
    color: #8B4513;
    margin: 20px 0 10px;
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
    background: #FAF7F2;
}

.course-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

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

.course-card h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin: 20px 0 15px;
}

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

.course-card ul {
    list-style: none;
    margin: 20px 0;
}

.course-card ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.course-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #228B22;
    font-weight: bold;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #DAA520;
    text-align: center;
    margin-top: 20px;
}

.course-features {
    padding: 80px 0;
    background: white;
}

.course-features h2 {
    text-align: center;
    color: #8B4513;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

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

.feature-item h3 {
    color: #8B4513;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #FAF7F2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: #8B4513;
    margin-bottom: 5px;
}

.author-info span {
    color: #999;
    font-size: 0.9rem;
}

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

.stats-section h2 {
    color: #8B4513;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

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

.stat-card h3 {
    color: #8B4513;
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
    background: white;
}

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

.contact-info h2 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    color: #8B4513;
    margin-bottom: 10px;
}

.contact-item p {
    line-height: 1.6;
}

.contact-item a {
    color: #DAA520;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-section h2 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 15px;
}

.subscription-form {
    background: #FAF7F2;
    padding: 30px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #8B4513;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #DAA520;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.4;
}

.submit-btn {
    background: #DAA520;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #B8860B;
}

.map-section {
    margin-top: 60px;
}

.map-section h2 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Blog Styles */
.blog-content {
    padding: 80px 0;
    background: #FAF7F2;
}

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

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

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

.blog-card-content {
    padding: 30px;
}

.blog-card h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

.read-more {
    color: #DAA520;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Article Page */
.article-content {
    padding: 80px 0;
    background: white;
}

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

.article-header h1 {
    color: #8B4513;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    color: #999;
    font-size: 1rem;
}

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

.article-body h2 {
    color: #8B4513;
    font-size: 2rem;
    margin: 40px 0 20px;
}

.article-body h3 {
    color: #DAA520;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

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

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

.article-body li {
    margin-bottom: 10px;
}

.recipe-ingredients {
    background: #FAF7F2;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.recipe-ingredients h3 {
    color: #8B4513;
    margin-bottom: 20px;
}

.recipe-steps {
    background: #F0F8FF;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.recipe-steps h3 {
    color: #8B4513;
    margin-bottom: 20px;
}

.recipe-steps ol {
    counter-reset: step;
}

.recipe-steps li {
    counter-increment: step;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.recipe-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    background: #DAA520;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

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

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

.legal-text h2 {
    color: #8B4513;
    font-size: 2rem;
    margin: 40px 0 20px;
}

.legal-text h3 {
    color: #DAA520;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.legal-text p {
    margin-bottom: 20px;
}

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

.legal-text li {
    margin-bottom: 10px;
}

/* Thanks Page */
.thanks-content {
    padding: 120px 0;
    background: linear-gradient(135deg, #FAF7F2 0%, #F0E6D2 100%);
    text-align: center;
}

.thanks-content h1 {
    color: #8B4513;
    font-size: 3rem;
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.thanks-actions .cta-button {
    background: #228B22;
}

.thanks-actions .cta-button:hover {
    background: #1F7A1F;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #DAA520;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #A0522D;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}