/* -----------------------------
GENERAL STYLES
----------------------------- */
:root {
    --primary-color: #e63946;
    --secondary-color: #457b9d;
    --dark-color: #1d3557;
    --light-color: #f1faee;
    --accent-color: #a8dadc;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --neutral-color: #f8f9fa;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    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: #333;
    background-color: #fff;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* -----------------------------
BUTTONS
----------------------------- */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #d32f3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--dark-color);
    text-decoration: underline;
}

.btn-tertiary:hover {
    color: var(--primary-color);
}

/* -----------------------------
HEADER & NAVIGATION
----------------------------- */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* -----------------------------
HERO SECTION
----------------------------- */
.hero {
    background-color: var(--light-color);
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* -----------------------------
FEATURES SECTION
----------------------------- */
.features {
    background-color: white;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 50px;
    height: 50px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* -----------------------------
POPULAR ITEMS SECTION
----------------------------- */
.popular-items {
    background-color: var(--light-color);
}

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

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

.item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.item-card h3, .item-card p {
    padding: 0 20px;
}

.item-card h3 {
    margin-top: 20px;
}

.item-card p {
    margin-bottom: 20px;
    color: #666;
}

.item-card .btn-secondary {
    margin: 0 20px 20px;
    display: block;
    text-align: center;
}

/* -----------------------------
BLOG PREVIEW SECTION
----------------------------- */
.blog-preview {
    background-color: white;
}

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

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--neutral-color);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.blog-content {
    padding: 20px;
}

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

.blog-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

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

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

/* -----------------------------
TESTIMONIALS SECTION
----------------------------- */
.testimonials {
    background-color: var(--light-color);
}

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

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

.stars {
    display: flex;
    margin-bottom: 15px;
    color: #ffc107;
}

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

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    font-style: normal;
    margin-bottom: 0;
    color: #666;
}

/* -----------------------------
BEGINNERS GUIDE SECTION
----------------------------- */
.beginners-guide {
    background-color: white;
}

.beginners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.beginners-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.beginners-text h3 {
    margin-bottom: 15px;
}

.beginners-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.beginners-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.beginners-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* -----------------------------
FOOTER
----------------------------- */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links ul li a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact p svg {
    margin-right: 10px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-policies ul {
    display: flex;
    gap: 20px;
}

.footer-policies ul li a {
    color: white;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-policies ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* -----------------------------
COOKIE BANNER
----------------------------- */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-banner.active {
    bottom: 0;
}

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

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    min-width: 300px;
}

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

.cookie-more {
    color: var(--primary-color);
    text-decoration: underline;
    margin-left: 20px;
}

/* -----------------------------
COMPLAINT FORM
----------------------------- */
.complaint-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 500px;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.complaint-form.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.complaint-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

.close-complaint-form {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
}

.close-complaint-form:hover {
    color: var(--primary-color);
}

.open-complaint-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: var(--transition);
}

.open-complaint-btn:hover {
    background-color: #d32f3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}

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

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* -----------------------------
BLOG PAGE STYLES
----------------------------- */
.page-banner {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    margin-bottom: 10px;
}

.blog-main {
    padding: 60px 0;
}

.blog-grid-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-card-large {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.blog-card-large h2 {
    text-align: left;
    margin-bottom: 15px;
}

.newsletter {
    background-color: var(--accent-color);
    padding: 60px 0;
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

/* -----------------------------
BLOG POST STYLES
----------------------------- */
.blog-post {
    padding: 60px 0;
}

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

.post-header {
    margin-bottom: 30px;
}

.post-header h1 {
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
}

.post-body h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-body p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

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

.post-image-inline {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 10px;
}

.post-quote {
    background-color: var(--light-color);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 10px;
}

.quote-author {
    font-weight: 600;
    color: #666;
}

.post-conclusion {
    background-color: var(--neutral-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 40px;
}

.post-conclusion h3 {
    margin-bottom: 15px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    align-items: center;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    background-color: var(--light-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.post-share span {
    font-weight: 600;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--dark-color);
    transition: var(--transition);
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-to-blog {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.post-nav-links {
    display: flex;
    gap: 20px;
}

.prev-post, .next-post {
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 30px;
}

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

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

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.related-post-card h4 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
}

.related-post-card a {
    display: block;
    padding: 0 15px 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.related-post-card a:hover {
    text-decoration: underline;
}

/* Recipe Card Styles */
.recipe-card {
    background-color: var(--neutral-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 30px 0;
}

.recipe-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.recipe-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.recipe-time {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.recipe-time span {
    font-weight: 600;
}

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

.recipe-card ul, .recipe-card ol {
    padding-left: 25px;
}

.recipe-card li {
    margin-bottom: 10px;
}

.recipe-notes {
    font-style: italic;
    margin-top: 20px;
    color: #666;
}

/* Pairing Card Styles */
.pairing-card {
    background-color: var(--neutral-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 20px 0 30px;
}

.pairing-card h3 {
    margin-bottom: 20px;
}

.pairing-card ul {
    padding-left: 5px;
    list-style-type: none;
}

.pairing-card li {
    margin-bottom: 20px;
    padding-left: 0;
}

.pairing-card li strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-color);
}

/* Sustainability Metrics Styles */
.sustainability-metrics {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.sustainability-metrics h3 {
    text-align: center;
    margin-bottom: 25px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1rem;
    line-height: 1.4;
}

/* Workshop Schedule Styles */
.workshop-schedule {
    margin: 30px 0;
}

.schedule-item {
    display: flex;
    margin-bottom: 25px;
}

.time {
    width: 160px;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
}

.schedule-content h4 {
    margin-bottom: 5px;
}

.schedule-content p {
    margin-bottom: 0;
}

/* Instructor Profiles Styles */
.instructor-profiles {
    margin: 30px 0;
}

.instructor {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.instructor img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Upcoming Workshops Styles */
.upcoming-workshops {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.workshop-card {
    background-color: var(--neutral-color);
    padding: 25px;
    border-radius: var(--border-radius);
    position: relative;
}

.workshop-date {
    background-color: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.workshop-card h4 {
    margin-bottom: 10px;
}

.workshop-card p {
    margin-bottom: 15px;
}

.workshop-status {
    font-weight: 600;
    color: var(--success-color);
}

/* Testimonials Workshop Styles */
.testimonials-workshop {
    margin: 30px 0;
}

.testimonial-workshop {
    background-color: var(--neutral-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-workshop::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 80px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.1);
}

.testimonial-workshop p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    font-style: normal;
    color: #666;
    margin-bottom: 0;
}

/* Workshop Details Styles */
.workshop-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
    background-color: var(--neutral-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

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

.detail-item p {
    margin-bottom: 0;
}

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

.inline-link {
    color: var(--primary-color);
    font-weight: 600;
}

.inline-link:hover {
    text-decoration: underline;
}

/* -----------------------------
CONTACT PAGE STYLES
----------------------------- */
.contact-main {
    padding: 60px 0;
}

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

.contact-info h2, .contact-form-container h2 {
    text-align: left;
    margin-bottom: 15px;
}

.contact-info > p, .contact-form-container > p {
    margin-bottom: 30px;
    color: #666;
}

.info-items {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    display: flex;
    align-items: flex-start;
    margin-right: 20px;
    color: var(--primary-color);
}

.info-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-content p {
    margin-bottom: 5px;
    color: #666;
}

.social-connect {
    margin-bottom: 40px;
}

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

.social-icons-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--dark-color);
    transition: var(--transition);
}

.social-icons-large a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.map-container h3 {
    margin-bottom: 15px;
}

.map {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

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

.form-success.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.success-content svg {
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-content h3 {
    margin-bottom: 15px;
}

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

.faq-section {
    background-color: var(--light-color);
    padding: 60px 0;
}

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

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.faq-item p {
    margin-bottom: 0;
    color: #555;
}

/* -----------------------------
ABOUT PAGE STYLES
----------------------------- */
.about-intro {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.our-philosophy {
    background-color: var(--light-color);
    padding: 60px 0;
}

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

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

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.philosophy-card h3 {
    text-align: center;
    margin-bottom: 15px;
}

.our-journey {
    padding: 60px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

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

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    transform: translateX(-50%);
    margin-top: -30px;
}

.timeline-content {
    position: relative;
    width: 45%;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

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

.timeline-content p {
    margin-bottom: 0;
    color: #666;
}

.our-team {
    background-color: var(--light-color);
    padding: 60px 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3, .team-member p {
    padding: 0 20px;
}

.team-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.team-member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-member p:nth-of-type(2) {
    margin-bottom: 20px;
    color: #666;
}

.our-ingredients {
    padding: 60px 0;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ingredients-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

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

.ingredients-list {
    margin-bottom: 20px;
    padding-left: 5px;
    list-style-type: none;
}

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

.ingredients-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.ingredients-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonials-about {
    background-color: var(--light-color);
    padding: 60px 0;
}

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

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-stars {
    display: flex;
    margin-bottom: 15px;
    color: #ffc107;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-location {
    color: #666;
    margin-bottom: 0;
}

.join-us {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

.join-us h2 {
    color: white;
    margin-bottom: 20px;
}

.join-us p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.join-us .btn-primary {
    background-color: white;
    color: var(--primary-color);
    margin-top: 10px;
}

.join-us .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------
RESPONSIVE STYLES
----------------------------- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container, 
    .beginners-content,
    .contact-grid,
    .about-grid,
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .blog-card-large {
        grid-template-columns: 1fr;
    }
    
    .blog-card-large img {
        height: 200px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-date {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
    }
    
    .cookie-more {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-nav-links {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }
    
    .instructor {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .instructor img {
        margin: 0 auto 15px;
    }
}

@media (max-width: 576px) {
    .features-grid, 
    .items-grid, 
    .blog-grid, 
    .testimonial-slider, 
    .blog-grid-main,
    .related-posts-grid,
    .philosophy-grid,
    .team-grid,
    .testimonials-grid,
    .faq-grid,
    .workshop-schedule .schedule-item {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons, 
    .cookie-buttons,
    .registration-cta {
        flex-direction: column;
    }
    
    .workshop-schedule .time {
        margin-bottom: 5px;
    }
    
    .workshop-schedule .schedule-item {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-policies ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
