/* ==========================================================================
   AGILE AFFECTION - CSS STYLE SYSTEM (REDESIGNED)
   ========================================================================== */

/* Local Fonts - GDPR Warning-Proof */
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url('../assets/fonts/Fraunces[opsz,wght].ttf') format('truetype');
}

@font-face {
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 300 900;
    font-display: swap;
    src: url('../assets/fonts/Fraunces-Italic[opsz,wght].ttf') format('truetype');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../assets/fonts/PlusJakartaSans[wght].ttf') format('truetype');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: italic;
    font-weight: 200 800;
    font-display: swap;
    src: url('../assets/fonts/PlusJakartaSans-Italic[wght].ttf') format('truetype');
}

/* 1. RESET & VARIABLES
   ========================================================================== */
:root {
    /* Primary Color Mappings - Dark Mode */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-card: #161616;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a5;
    --text-muted: #62626a;
    
    --accent-yellow: #ffe043;
    --border-color: #222225;
    
    /* Layout & Styling */
    --navbar-height: 90px;
    --font-heading: 'Fraunces', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="light"] {
    /* Premium Minimalist Light Mode (Default) */
    --bg-primary: #fcfcfc;
    --bg-secondary: #f4f4f6;
    --bg-card: #ffffff;
    
    --text-primary: #0a0a0a;
    --text-secondary: #55555a;
    --text-muted: #8e8e93;
    
    --border-color: #e5e5e7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 400; /* Editorial light weight */
    line-height: 1.2;
    transition: color var(--transition-normal);
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================================================
   2. STRIKETHROUGH HOVER TRANSITION
   ========================================================================== */
.strikethrough-hover,
.nav-link,
.btn-text,
.detail-link,
.footer-links a {
    position: relative;
    display: inline-block;
    color: inherit;
}

.strikethrough-hover::after,
.nav-link::after,
.btn-text::after,
.detail-link::after,
.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 52%;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width var(--transition-normal);
}

.strikethrough-hover:hover::after,
.nav-link:hover::after,
.btn-text:hover::after,
.detail-link:hover::after,
.footer-links a:hover::after {
    width: 100%;
}

/* ==========================================================================
   3. BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all var(--transition-normal);
    gap: 8px;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-primary);
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-primary);
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    border-color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-accent {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-secondary-light {
    border-color: var(--border-color);
}

.btn-secondary-light:hover {
    border-color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-text {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-primary);
    padding: 4px 0;
}

.highlight-text {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-primary);
}

.w-full {
    width: 100%;
}

/* ==========================================================================
   4. ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in {
    animation: fadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-slide-up {
    animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ==========================================================================
   5. NAVIGATION HEADER (TRANSPARENT / STICKY)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

/* Header scrolled state or overlay state changes */
.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .navbar.scrolled {
    background-color: rgba(252, 252, 252, 0.85);
}

.nav-container {
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 32px;
    width: auto;
    filter: invert(0.9) hue-rotate(180deg) brightness(1.2);
    transition: filter var(--transition-normal);
}

[data-theme="light"] .logo-img {
    filter: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-primary);
    transition: background-color var(--transition-fast);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

/* Hamburger Menu Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 16px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    transition: all var(--transition-normal);
}

/* Hamburger Animation to 'X' */
.hamburger.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Full-Screen Navigation Overlay */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
    z-index: 999;
}

.nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.nav-menu .nav-link {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.1;
    transition: opacity var(--transition-fast);
}

.nav-menu .nav-link:hover {
    opacity: 1;
}

/* Make other links faint when one is hovered */
.nav-menu-inner:hover .nav-link:not(:hover) {
    opacity: 0.3;
}

.nav-menu .btn-contact-nav {
    border: none;
    background: none;
    font-size: clamp(32px, 5vw, 64px);
    text-transform: none;
    font-weight: 300;
    letter-spacing: 0;
    padding: 0;
    border-radius: 0;
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.hero-bg-gradients {
    display: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.badge-new {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 650px;
}

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

.hero-visual {
    display: none; /* Removed for theyoucollective clean typography hero style */
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down svg {
    width: 28px;
    height: 28px;
    color: var(--text-secondary);
    stroke-width: 1.5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ==========================================================================
   7. ABOUT ME SECTION
   ========================================================================== */
.about-section {
    padding: 160px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: -0.8px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.6;
}

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

.about-image-wrapper {
    position: relative;
}

.about-profile-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    filter: grayscale(1);
    transition: filter var(--transition-normal);
}

.about-profile-img:hover {
    filter: grayscale(0.2);
}

.about-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
    width: 100%;
}

.stat-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-fast);
}

.stat-card:hover {
    border-color: var(--text-secondary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 300;
    color: var(--text-primary);
    display: block;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    line-height: 1.4;
}

.about-subheading {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Skill Tags / Badges */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 9999px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    letter-spacing: 0.02em;
    transition: border-color var(--transition-fast), transform var(--transition-fast), background-color var(--transition-fast);
}

.skill-tag:hover {
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* ==========================================================================
   8. SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 160px 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 48px;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* Clear Theyoucollective-inspired custom subtle backgrounds */
#service-card-leadership,
#service-card-methods,
#service-card-workshops,
#service-card-team {
    background-color: var(--bg-card);
}

.service-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.service-icon {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.service-card-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.service-features li {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 14px;
}

/* ==========================================================================
   9. ASSESSMENT SECTION (QUIZ)
   ========================================================================== */
.assessment-section {
    padding: 160px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.assessment-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 80px;
    color: var(--text-secondary);
    position: relative;
}

.assessment-intro {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.text-white {
    color: var(--text-primary) !important;
}

.assessment-desc {
    color: var(--text-secondary);
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.assessment-quiz {
    max-width: 760px;
}

.quiz-progress-bar-wrapper {
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    margin-bottom: 48px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background-color: var(--text-primary);
    transition: width 0.3s ease;
}

.quiz-question-wrapper {
    display: flex;
    flex-direction: column;
}

.quiz-question-number {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.quiz-question-text {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 36px;
    line-height: 1.3;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.quiz-option {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 24px 32px;
    font-size: 15px;
    color: var(--text-secondary);
    text-align: left;
    transition: all var(--transition-fast);
}

.quiz-option:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.assessment-results {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-badge-icon {
    width: 64px;
    height: 64px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.result-badge-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1;
}

.result-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.result-score {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.result-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.hidden {
    display: none !important;
}

/* ==========================================================================
   10. CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 160px 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.contact-card-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card-centered .section-tagline {
    margin-bottom: 16px;
}

.contact-card-centered .section-title {
    margin-bottom: 24px;
    font-size: 3.5rem;
    font-weight: 300;
}

.contact-card-centered .contact-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 48px;
    max-width: 600px;
}

.contact-action-wrapper {
    margin-bottom: 56px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-mail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 24px 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--font-heading);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal);
    text-decoration: none;
}

[data-theme="dark"] .contact-mail-btn {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-mail-btn:hover {
    border-color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .contact-mail-btn:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mail-btn-text {
    position: relative;
}

.mail-btn-arrow {
    width: 44px;
    height: 44px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal), background-color var(--transition-normal), color var(--transition-normal);
}

.contact-mail-btn:hover .mail-btn-arrow {
    transform: rotate(-45deg);
}

.mail-btn-arrow svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.contact-meta-info {
    display: flex;
    gap: 48px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    width: 100%;
    justify-content: center;
}

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

.meta-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.meta-value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-card-centered .section-title {
        font-size: 2.5rem;
    }
    
    .contact-mail-btn {
        font-size: 1.15rem;
        padding: 16px 28px;
        gap: 16px;
    }
    
    .mail-btn-arrow {
        width: 36px;
        height: 36px;
    }
    
    .mail-btn-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 120px 0 60px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    filter: invert(0.9) hue-rotate(180deg) brightness(1.2);
}

[data-theme="light"] .footer-logo-img {
    filter: none;
}

.footer-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-links-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 40px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-author {
    font-weight: 500;
}

/* ==========================================================================
   12. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================================================== */

/* Large Tablets & Small Desktops (max-width: 1100px) */
@media (max-width: 1100px) {
    .container {
        padding: 0 32px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Medium Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form-panel {
        padding: 40px 32px;
    }
    
    .assessment-box {
        padding: 48px 32px;
    }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   14. SLIDESHOW SECTION ("THORBEN IN ACTION")
   ========================================================================== */
.action-hero {
    padding: 160px 0 80px 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.action-hero .section-title {
    margin-bottom: 24px;
}

.action-hero-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.slideshow-section {
    padding: 0 0 120px 0;
    background-color: var(--bg-primary);
}

.slideshow-wrapper {
    max-width: 960px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--transition-normal);
}

[data-theme="dark"] .slideshow-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.slideshow-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: #000;
}

.slideshow-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slideshow-slide.active {
    opacity: 1;
    visibility: visible;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Glassy Overlay for Captions */
.slide-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 40px 32px 32px 32px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform var(--transition-normal) 0.2s;
}

.slideshow-slide.active .slide-caption-overlay {
    transform: translateY(0);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #ffffff;
}

.slide-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Navigation Buttons */
.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.slideshow-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.slideshow-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slideshow-arrow.prev {
    left: 24px;
}

.slideshow-arrow.next {
    right: 24px;
}

.slideshow-arrow svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Play/Pause Button */
.slideshow-play-pause {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color var(--transition-fast);
}

.slideshow-play-pause:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.slideshow-play-pause svg {
    width: 18px;
    height: 18px;
}

/* Auto-play progress bar */
.slideshow-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    z-index: 11;
}

.slideshow-progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--accent-yellow);
    transition: width linear;
}

/* Thumbnail Navigation */
.slideshow-thumbnails {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.slideshow-thumbnail {
    width: 80px;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: opacity var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    flex-shrink: 0;
}

.slideshow-thumbnail:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.slideshow-thumbnail.active {
    opacity: 1;
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .slideshow-wrapper {
        padding: 12px;
        border-radius: 16px;
    }
    
    .slideshow-arrow {
        width: 44px;
        height: 44px;
    }
    
    .slideshow-arrow.prev {
        left: 12px;
    }
    
    .slideshow-arrow.next {
        right: 12px;
    }
    
    .slide-title {
        font-size: 18px;
    }
    
    .slide-description {
        font-size: 12px;
    }
}

/* ==========================================================================
   10. LEGAL PAGES STYLING (IMPRINT & PRIVACY)
   ========================================================================== */
.legal-section {
    padding: 160px 0 100px 0;
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal);
}
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}
.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
}
.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
}
.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
}
.legal-container p, .legal-container ul {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}
.legal-container ul {
    list-style-type: disc;
    padding-left: 20px;
}
.legal-container li {
    margin-bottom: 0.5rem;
}
.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    color: var(--accent-yellow);
    font-weight: 500;
    transition: transform var(--transition-fast);
}
.legal-back-link:hover {
    transform: translateX(-4px);
}

