/* Van Goud vzw - Main Stylesheet */

/* CSS Variables for consistent theming */
:root {
    /* Colors - Warm, organic palette with golden accents */
    --gold: #D4A574;
    --gold-dark: #B8894F;
    --gold-light: #E8C9A0;
    --gold-pale: #F5E6D3;
    
    --warm-white: #FAF8F5;
    --warm-gray: #E8E4DF;
    --text-dark: #2C2722;
    --text-medium: #5C5550;
    --text-light: #8A8379;
    
    --accent-blue: #7A9BA8;
    --accent-green: #9BA87A;
    --accent-warm: #C89B7B;
    
    /* Typography */
    --font-display: 'Crimson Pro', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Transitions */
    --transition: 0.3s ease;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
    color: var(--gold-dark);
}

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

a:hover {
    color: var(--gold);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--warm-gray);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-text {
    color: var(--text-dark);
}

.logo-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

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

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--gold-pale) 100%);
}

.hero-content {
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-emphasis {
    color: var(--gold-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    animation: fadeIn 1.5s ease;
}

.periodic-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.periodic-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.element {
    text-align: center;
    border: 3px solid var(--gold);
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, white 0%, var(--gold-pale) 100%);
}

.element-number {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.element-symbol {
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: var(--font-display);
    margin: 0.5rem 0;
}

.element-name {
    font-size: 1.5rem;
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gold-pale);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: var(--space-xl) 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.section-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Mission Section */
.mission {
    background: white;
    border-top: 1px solid var(--warm-gray);
    border-bottom: 1px solid var(--warm-gray);
}

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

.mission-text {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Values Section */
.values {
    background: var(--warm-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.periodic-mini {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.mini-symbol {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.mini-number {
    font-size: 0.75rem;
    opacity: 0.8;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-description {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Approach Section */
.approach {
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--warm-white) 100%);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.approach-text {
    font-size: 1.15rem;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.approach-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.approach-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.approach-details p {
    color: var(--text-medium);
    margin: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--warm-gray);
    padding: var(--space-lg) 0 var(--space-md);
}

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

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--warm-gray);
    line-height: 1.8;
}

.footer-meta {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--warm-gray);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--warm-gray);
    opacity: 0.7;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--warm-white) 100%);
    padding: var(--space-xl) 0 var(--space-lg);
    text-align: center;
    border-bottom: 1px solid var(--warm-gray);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    background: white;
}

.content-block {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.content-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.styled-list {
    list-style: none;
    margin: 1.5rem 0;
}

.styled-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.intro-block {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: var(--gold-pale);
    border-radius: 16px;
    border-left: 5px solid var(--gold);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Team Section */
.team-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--gold-pale);
    border-radius: 20px;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.team-note {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 2rem;
}

/* Values Simple */
.values-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-simple {
    padding: 2rem;
    background: var(--gold-pale);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.value-simple h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--gold-dark);
}

.value-simple p {
    color: var(--text-medium);
    margin: 0;
}

/* Services Section */
.services {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--warm-gray);
}

.service-item:last-child {
    border-bottom: none;
}

.service-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-light);
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-details {
    background: var(--gold-pale);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.service-details h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
}

/* Work Principles */
.how-we-work {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--gold-pale) 100%);
}

.work-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.principle {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.principle h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.principle p {
    color: var(--text-medium);
    margin: 0;
}

/* Characteristics */
.characteristics {
    max-width: 1100px;
    margin: 4rem auto;
}

.char-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.char-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.char-card h3 {
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.char-card p {
    color: var(--text-medium);
    margin: 0;
}

/* Neurodiversity Section */
.neurodiversity {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
    border-radius: 20px;
    color: white;
}

.neurodiversity .content-title {
    color: white;
}

.neuro-content {
    margin-top: 2rem;
}

.neuro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: white;
    opacity: 0.95;
}

/* Support Tips */
.support-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip {
    background: var(--gold-pale);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.tip h3 {
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

.tip p {
    color: var(--text-medium);
    margin: 0;
}

/* Myths Section */
.myths {
    max-width: 1100px;
    margin: 4rem auto;
}

.myth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.myth-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.myth-false {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #E57373;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.myth-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.myth-true {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #81C784;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.myth-truth {
    color: var(--text-medium);
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gold-pale);
    border-radius: 12px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-medium);
    margin: 0;
}

.contact-note {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--warm-white);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.contact-note h3 {
    font-size: 1.2rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.contact-note p {
    color: var(--text-medium);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gold-pale);
    padding: 3rem;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--warm-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #C8E6C9;
    color: #2E7D32;
}

.form-message.error {
    display: block;
    background: #FFCDD2;
    color: #C62828;
}

/* Reasons to Contact */
.reasons-to-contact {
    background: var(--warm-white);
}

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

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition);
}

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

.reason-card h3 {
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: var(--text-medium);
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--warm-white);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .values-grid,
    .char-grid,
    .work-principles,
    .support-tips,
    .myth-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Utility Classes */
.center {
    text-align: center;
}

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }

/* Email Link Styling - Add this to your css/styles.css */

.email-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-email {
    margin-top: 1rem;
}

.footer-email a {
    color: var(--warm-gray);
    transition: color var(--transition);
    text-decoration: none;
}

.footer-email a:hover {
    color: var(--gold-light);
}

#email-address,
#footer-email-address {
    font-weight: 500;
}

/* Cookie Consent Banner Styles */

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid var(--gold);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cookie-text p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border: none;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.cookie-btn-decline {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--warm-gray);
}

.cookie-btn-decline:hover {
    background: var(--warm-gray);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-medium);
    border: 2px solid var(--warm-gray);
}

.cookie-btn-settings:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.cookie-settings-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
}

.cookie-settings-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-medium);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.cookie-settings-close:hover {
    color: var(--text-dark);
}

.cookie-option {
    padding: 1.5rem;
    background: var(--gold-pale);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-option h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-dark);
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--warm-gray);
    border-radius: 13px;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle.active {
    background: var(--gold);
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all var(--transition);
}

.cookie-toggle.active::after {
    left: 27px;
}

.cookie-option-description {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.cookie-settings-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-settings-actions button {
    flex: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-banner {
        padding: 1.5rem 1rem;
    }
}

/* Blog Styles - Add to the end of css/styles.css */

/* Blog Section */
.blog-section {
    background: var(--warm-white);
    padding: var(--space-xl) 0;
}

/* Blog Post Card (on blog listing page) */
.blog-post {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
}

.blog-post-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.blog-post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-post-date {
    color: var(--text-light);
}

.blog-post-category {
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.blog-post-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition);
}

.blog-post-title a:hover {
    color: var(--gold-dark);
}

.blog-post-excerpt {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-post-link {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition);
}

.blog-post-link:hover {
    gap: 0.75rem;
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 16px;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.blog-empty h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.blog-empty p {
    color: var(--text-medium);
}

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: white;
    text-align: center;
}

/* Single Blog Post Page */
.blog-post-single {
    background: white;
}

.blog-post-header {
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--warm-white) 100%);
    padding: var(--space-xl) 0 var(--space-lg);
    border-bottom: 1px solid var(--warm-gray);
}

.blog-post-title-single {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-author {
    color: var(--text-medium);
    font-size: 1rem;
    margin-top: 1rem;
}

.blog-post-body {
    padding: var(--space-xl) 0;
}

.blog-post-content-single {
    max-width: 750px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-content-single h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--text-dark);
}

.blog-post-content-single h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--gold-dark);
}

.blog-post-content-single p {
    margin-bottom: 1.5rem;
}

.blog-post-content-single ul,
.blog-post-content-single ol {
    margin: 1.5rem 0;
}

.blog-post-content-single a {
    color: var(--gold-dark);
    text-decoration: underline;
    font-weight: 500;
}

.blog-post-content-single a:hover {
    color: var(--gold);
}

.blog-quote {
    border-left: 4px solid var(--gold);
    background: var(--gold-pale);
    padding: 2rem;
    margin: 2.5rem 0;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    border-radius: 8px;
}

/* Blog Post Footer */
.blog-post-footer {
    max-width: 750px;
    margin: 0 auto 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--warm-gray);
}

.blog-post-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gold-pale);
    color: var(--gold-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: lowercase;
}

.blog-post-share {
    margin-top: 2rem;
}

.blog-post-share p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    display: inline-block;
}

.share-facebook {
    background: #1877F2;
    color: white;
}

.share-twitter {
    background: #1DA1F2;
    color: white;
}

.share-linkedin {
    background: #0A66C2;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Blog Post Navigation */
.blog-post-navigation {
    max-width: 750px;
    margin: 0 auto;
    padding-top: 2rem;
}

/* Responsive Blog Styles */
@media (max-width: 968px) {
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .blog-post-placeholder {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .blog-post-title {
        font-size: 1.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        text-align: center;
    }
}
