/* 
* RupVance - Personal Growth Workshop Platform
* Modern and clean CSS styling for educational content
* Created: 2024
*/

/* Base & Reset */
:root {
    /* Primary Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #a5b4fc;
    
    /* Secondary Colors */
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --secondary-light: #6ee7b7;
    
    /* Neutral Colors */
    --neutral-100: #f9fafb;
    --neutral-200: #f3f4f6;
    --neutral-300: #e5e7eb;
    --neutral-400: #d1d5db;
    --neutral-500: #9ca3af;
    --neutral-600: #6b7280;
    --neutral-700: #4b5563;
    --neutral-800: #374151;
    --neutral-900: #1f2937;
    
    /* Accent Colors */
    --accent-yellow: #fbbf24;
    --accent-orange: #f97316;
    --accent-red: #ef4444;
    --accent-pink: #ec4899;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-teal: #14b8a6;
    
    /* Feedback Colors */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Poppins', var(--font-main);
    --font-mono: 'Fira Code', 'Courier New', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--neutral-800);
    background-color: var(--neutral-100);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
}

button {
    cursor: pointer;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--neutral-900);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-md);
}

strong {
    font-weight: 600;
}

/* Containers & Layouts */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    padding: 0 var(--space-lg);
    margin: 0 auto;
}

section {
    padding: var(--space-2xl) 0;
}

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: var(--space-3xl) 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: var(--space-sm);
    font-size: 2.75rem;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Grid Layouts */
.blog-grid, 
.workshop-grid, 
.testimonial-grid,
.mission-values-grid,
.team-grid,
.faq-grid {
    display: grid;
    gap: var(--space-xl);
}

.blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.workshop-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.mission-values-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

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

.faq-grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.blog-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
}

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

nav ul {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

nav a {
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    color: var(--neutral-700);
    transition: all var(--transition-fast);
}

nav a:hover {
    color: var(--primary-color);
    background-color: var(--neutral-100);
}

nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(to right, rgba(99, 102, 241, 0.9), rgba(67, 56, 202, 0.8)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: var(--space-3xl) 0;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.hero h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

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

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.secondary-btn:hover {
    background-color: var(--secondary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.outline-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.text-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.5rem 0;
}

.text-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.small-btn {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

/* Custom Frame (for images) */
.custom-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.custom-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-color);
    opacity: 0.3;
    border-radius: var(--radius-md);
    z-index: 1;
    transition: opacity var(--transition-normal);
}

.custom-frame:hover {
    transform: scale(1.02);
}

.custom-frame:hover::before {
    opacity: 0.6;
}

.custom-frame.small {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
}

.custom-frame.small img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-full);
}

.custom-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform var(--transition-normal);
}

/* Featured Workshops Section */
.featured-workshops {
    text-align: center;
    background-color: white;
}

.featured-workshops h2 {
    margin-bottom: var(--space-xl);
}

.workshop-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.workshop-image {
    position: relative;
}

.workshop-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background-color: var(--accent-yellow);
    color: var(--neutral-900);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.workshop-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.workshop-content h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.workshop-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    color: var(--neutral-600);
    font-size: 0.875rem;
}

.workshop-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.next-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: var(--space-md);
}

.workshop-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    line-height: 1.2;
}

.workshop-date .day {
    font-size: 1.5rem;
    font-weight: 700;
}

.workshop-date .month {
    font-size: 0.875rem;
    font-weight: 600;
}

.price {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.125rem;
}

/* Daily Pick Section */
.daily-pick {
    background-color: var(--neutral-200);
    position: relative;
}

.daily-pick h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.daily-pick-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    align-items: center;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl);
}

.daily-pick-text h3 {
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

.daily-pick-text ul {
    margin-bottom: var(--space-lg);
    list-style-type: none;
}

.daily-pick-text ul li {
    margin-bottom: var(--space-sm);
    padding-left: 1.5rem;
    position: relative;
}

.daily-pick-text ul li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Daily Pick Widget for Sidebar */
.daily-pick-widget {
    background-color: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.daily-pick-widget .daily-pick-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 0;
    box-shadow: none;
    background-color: transparent;
}

.daily-pick-widget h3 {
    color: var(--primary-dark);
}

.daily-pick-widget h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-dark);
}

.daily-pick-widget p {
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.daily-pick-widget .btn {
    width: 100%;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: var(--space-xl);
}

.testimonial-card {
    background-color: var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.testimonial-text p {
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.author-info p {
    margin-bottom: 0;
    color: var(--neutral-600);
    font-size: 0.875rem;
}

/* Blog Preview Section */
.blog-preview {
    text-align: center;
    background-color: var(--neutral-200);
}

.blog-preview h2 {
    margin-bottom: var(--space-xl);
}

.blog-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    padding: 0 var(--space-lg);
    font-size: 1.25rem;
}

.blog-card p {
    padding: 0 var(--space-lg);
    margin-bottom: var(--space-lg);
    color: var(--neutral-700);
}

.read-more {
    margin-top: auto;
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.arrow {
    margin-left: var(--space-xs);
    transition: transform var(--transition-fast);
}

.read-more:hover .arrow {
    transform: translateX(4px);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.newsletter h2 {
    color: white;
    margin-bottom: var(--space-sm);
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: var(--space-md);
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.625rem var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Footer */
footer {
    background-color: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: auto;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-logo p {
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.footer-logo .registration {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--neutral-300);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.footer-contact svg {
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--neutral-800);
    color: white;
    transition: all var(--transition-fast);
}

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

.copyright {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--neutral-800);
    color: var(--neutral-500);
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: var(--space-lg);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: var(--space-md);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Blog Page Styles */
.blog-filters {
    background-color: white;
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-lg);
}

.filters {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.filter-group label {
    font-weight: 500;
}

.filter-group select {
    padding: 0.5rem var(--space-md);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    background-color: white;
}

.search {
    display: flex;
    gap: var(--space-xs);
    margin-left: auto;
}

.search input {
    padding: 0.5rem var(--space-md);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    width: 200px;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-post {
    margin-bottom: var(--space-2xl);
}

.featured-post-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-md);
}

.featured-post-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
}

.post-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.post-meta {
    color: var(--neutral-600);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.posts-grid {
    display: grid;
    gap: var(--space-xl);
}

.post-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.post-image {
    position: relative;
}

.post-image .post-tag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    margin-bottom: 0;
}

.post-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-content h2 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.post-content .read-more {
    margin-top: auto;
    padding: var(--space-md) 0 0;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--neutral-200);
}

.category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--neutral-700);
}

.category-list a:hover {
    color: var(--primary-color);
}

.category-list span {
    color: var(--neutral-500);
    font-size: 0.875rem;
}

.mini-workshop-card {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--neutral-200);
}

.mini-workshop-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.workshop-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.workshop-info p {
    margin-bottom: var(--space-xs);
    color: var(--neutral-600);
    font-size: 0.875rem;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sidebar-form input {
    padding: 0.625rem var(--space-md);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
}

/* Contact Page Styles */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.contact-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl);
    text-align: center;
    transition: transform var(--transition-normal);
}

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

.contact-card .icon {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.contact-card h3 {
    margin-bottom: var(--space-sm);
}

.contact-card p {
    color: var(--neutral-600);
    margin-bottom: var(--space-md);
}

.contact-card a {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
}

.contact-form-wrapper {
    padding: var(--space-xl);
}

.contact-form-wrapper h2 {
    margin-bottom: var(--space-md);
}

.contact-form-wrapper > p {
    margin-bottom: var(--space-xl);
    color: var(--neutral-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--neutral-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem var(--space-md);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
}

.checkbox-group input {
    width: auto;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
}

.map-placeholder {
    position: relative;
    height: 100%;
    background-color: var(--neutral-200);
}

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

.map-note {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: var(--space-md);
    text-align: center;
    font-size: 0.875rem;
}

.map-note a {
    color: var(--primary-light);
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.thank-you-modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--neutral-600);
}

.modal-icon {
    margin: 0 auto var(--space-lg);
    width: 64px;
    height: 64px;
    background-color: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content h3 {
    margin-bottom: var(--space-sm);
}

.modal-content p {
    margin-bottom: var(--space-lg);
}

.close-btn {
    width: 100%;
}

/* Workshops Page Styles */
.workshop-filters {
    background-color: white;
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-lg);
}

.featured-workshop-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 3fr;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-2xl);
}

.featured-workshop-content {
    padding: var(--space-xl);
}

.workshop-badges {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.workshop-badge.featured {
    background-color: var(--primary-color);
    color: white;
}

.workshop-badge.bestseller {
    background-color: var(--accent-orange);
    color: white;
}

.workshop-description {
    color: var(--neutral-700);
    margin-bottom: var(--space-lg);
    font-size: 1.0625rem;
}

.workshop-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.detail-item h4 {
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

.detail-item ul {
    color: var(--neutral-700);
    padding-left: var(--space-lg);
}

.detail-item li {
    margin-bottom: var(--space-sm);
}

.date-list {
    list-style: none;
    padding: 0;
}

.date-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.date-info {
    display: flex;
    flex-direction: column;
}

.time {
    font-weight: 500;
}

.format {
    color: var(--neutral-600);
    font-size: 0.875rem;
}

.workshop-pricing {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.workshop-pricing .price {
    font-size: 1.75rem;
    font-weight: 700;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.discount {
    color: var(--secondary-dark);
    font-weight: 500;
}

.group {
    color: var(--neutral-600);
    font-size: 0.875rem;
}

.workshop-cta {
    display: flex;
    gap: var(--space-md);
}

.workshop-grid-section {
    background-color: white;
}

.workshop-grid-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.load-more {
    text-align: center;
    margin-top: var(--space-xl);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: var(--space-xl);
    padding: var(--space-sm) 0;
    scroll-snap-type: x mandatory;
}

.testimonial-slider .testimonial-card {
    min-width: 350px;
    scroll-snap-align: start;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--space-sm);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* About Us Page Styles */
.about-story {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-text h2 {
    margin-bottom: var(--space-lg);
    color: var(--primary-dark);
}

.about-text p {
    margin-bottom: var(--space-md);
}

.mission-values {
    background-color: var(--neutral-200);
    text-align: center;
}

.mission-values h2 {
    margin-bottom: var(--space-xl);
}

.mission-value-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.mission-value-card:hover {
    transform: translateY(-10px);
}

.mission-value-card .icon {
    margin-bottom: var(--space-lg);
    color: var(--primary-color);
}

.mission-value-card h3 {
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

.team {
    background-color: white;
    text-align: center;
}

.team h2 {
    margin-bottom: var(--space-xl);
}

.team-member {
    background-color: var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
    color: var(--primary-dark);
}

.team-member p:first-of-type {
    color: var(--neutral-600);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.team-member p:last-of-type {
    color: var(--neutral-700);
    font-size: 0.9375rem;
}

.impact {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.impact h2 {
    color: white;
    margin-bottom: var(--space-xl);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: white;
}

.stat-card p {
    margin-bottom: 0;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .featured-post-card,
    .featured-workshop-card {
        grid-template-columns: 1fr;
    }

    .daily-pick-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .blog-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--space-md);
    }

    .blog-grid, 
    .workshop-grid, 
    .testimonial-grid,
    .mission-values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .workshop-details {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .search {
        margin-left: 0;
        width: 100%;
    }

    .search input {
        width: 100%;
    }

    nav ul {
        padding: 1rem;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .cta-buttons,
    .workshop-cta,
    .cookie-buttons {
        flex-direction: column;
    }
}
