/*
Theme Name: Repo Mixer
Theme URI: https://repomixer.com
Author: Repo Mixer Team
Author URI: https://repomixer.com
Description: A sleek, dark-themed one-page theme for audio software landing pages. Features gradient accents, glassmorphic cards, and professional audio aesthetics.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: repo-mixer
Tags: one-column, custom-colors, custom-menu, featured-images, theme-options, translation-ready

Repo Mixer WordPress Theme, Copyright 2024 Repo Mixer Team
Repo Mixer is distributed under the terms of the GNU GPL
*/

/* ========================================
   CSS Variables / Design System
======================================== */
:root {
    --background: #0a0a0a;
    --background-card: #121212;
    --foreground: #fafafa;
    --muted: #1f1f1f;
    --muted-foreground: #999999;
    --border: #262626;
    
    --primary: #ec4899;
    --primary-foreground: #ffffff;
    --secondary: #a855f7;
    --accent: #06b6d4;
    --success: #22c55e;
    
    --gradient-primary: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    --shadow-glow-pink: 0 0 40px rgba(236, 72, 153, 0.3);
    --shadow-glow-purple: 0 0 40px rgba(168, 85, 247, 0.3);
    --shadow-card: 0 4px 24px -1px rgba(0, 0, 0, 0.4);
    
    --radius: 0.75rem;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul, ol {
    list-style: none;
}

/* ========================================
   Utility Classes
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: var(--gradient-primary);
}

.glow-pink {
    box-shadow: var(--shadow-glow-pink);
}

.glass-card {
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.6) 0%, rgba(10, 10, 10, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(38, 38, 38, 0.5);
    border-radius: var(--radius);
}

.text-glow {
    text-shadow: 0 0 40px rgba(236, 72, 153, 0.5);
}

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

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(1.75rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

.section-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow-pink);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 2px solid rgba(236, 72, 153, 0.5);
}

.btn-outline:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: var(--primary);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ========================================
   Header / Navigation
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(38, 38, 38, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--foreground);
}

.mobile-menu-toggle {
    display: flex;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(236, 72, 153, 0.15), transparent),
                radial-gradient(ellipse 50% 30% at 50% 100%, rgba(168, 85, 247, 0.1), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: slideUp 0.6s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: slideUp 0.6s ease-out 0.2s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    animation: slideUp 0.6s ease-out 0.3s both;
}

.feature-card {
    min-width: 120px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: border-color 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(236, 72, 153, 0.3);
}

.feature-card svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.6));
}

.feature-card span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(153, 153, 153, 0.3);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 0.25rem;
    animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   Mixer Demo Section
======================================== */
.mixer-section {
    padding: 6rem 0;
    position: relative;
}

.mixer-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(168, 85, 247, 0.08), transparent);
    pointer-events: none;
}

.mixer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mixer-header h2 {
    margin-bottom: 1rem;
}

.mixer-header p {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.mixer-console {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .channel-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.channel-strip {
    background: rgba(31, 31, 31, 0.3);
    border: 1px solid rgba(38, 38, 38, 0.3);
    border-radius: var(--radius);
    padding: 1rem;
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.channel-header svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.channel-header span {
    font-size: 0.875rem;
    font-weight: 500;
}

.channel-value {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.channel-value .value {
    font-size: 1.875rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.channel-value .unit {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-family: var(--font-mono);
}

/* Range Slider */
input[type="range"] {
    width: 100%;
    height: 0.5rem;
    border-radius: 0.25rem;
    appearance: none;
    background: var(--gradient-primary);
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.8);
    cursor: pointer;
}

/* Master Volume */
.master-volume {
    background: rgba(31, 31, 31, 0.3);
    border: 1px solid rgba(38, 38, 38, 0.3);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

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

.master-header .label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.master-header svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

/* Effects Grid */
.effects-section {
    margin-bottom: 1.5rem;
}

.effects-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.effects-label svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.effects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.effect-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid rgba(38, 38, 38, 0.3);
    background: rgba(31, 31, 31, 0.5);
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.2s ease;
}

.effect-btn:hover {
    background: var(--muted);
    color: var(--foreground);
}

.effect-btn.active {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    border-color: transparent;
    box-shadow: var(--shadow-glow-pink);
}

/* Status Bar */
.mixer-status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(38, 38, 38, 0.3);
}

.status-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s ease-in-out infinite;
}

.status-connected {
    color: var(--success);
    font-weight: 500;
}

.status-value {
    color: var(--foreground);
    font-family: var(--font-mono);
}

/* Mixer Features */
.mixer-features {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 768px) {
    .mixer-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mixer-feature svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin: 0 auto 0.75rem;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.6));
}

.mixer-feature h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.mixer-feature p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   Features Section
======================================== */
.features-section {
    padding: 6rem 0;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    margin-bottom: 1rem;
}

.features-header p {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-box {
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(236, 72, 153, 0.3);
}

.feature-box svg {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.25rem;
}

.feature-box.pink svg {
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.6));
}

.feature-box.purple svg {
    color: var(--secondary);
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

.feature-box.cyan svg {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
}

.feature-box.green svg {
    color: var(--success);
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.6));
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    transform: translateX(4px);
}

/* ========================================
   Interface Section
======================================== */
.interface-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.interface-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(236, 72, 153, 0.05), transparent);
    pointer-events: none;
}

.interface-header {
    text-align: center;
    margin-bottom: 4rem;
}

.interface-header h2 {
    margin-bottom: 1rem;
}

.interface-display {
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
}

.interface-screen {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.5), rgba(31, 31, 31, 0.2));
    border: 1px solid rgba(38, 38, 38, 0.3);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.interface-mock {
    position: absolute;
    inset: 1rem;
    display: flex;
    gap: 1rem;
}

.mock-channel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-label {
    height: 1rem;
    background: rgba(31, 31, 31, 0.6);
    border-radius: 0.25rem;
}

.mock-fader {
    flex: 1;
    background: linear-gradient(to top, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(38, 38, 38, 0.3);
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.mock-fader-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    border-radius: 0 0 0.5rem 0.5rem;
    transition: height 0.5s ease;
}

.mock-buttons {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.mock-btn {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--muted);
}

.mock-btn.active {
    background: var(--success);
    animation: pulse 2s ease-in-out infinite;
}

.interface-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
}

.interface-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    text-align: left;
}

.interface-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.interface-info p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.interface-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.interface-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid rgba(38, 38, 38, 0.3);
    background: rgba(31, 31, 31, 0.5);
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.3s ease;
}

.interface-tab:hover {
    background: var(--muted);
    color: var(--foreground);
}

.interface-tab.active {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    border-color: transparent;
    box-shadow: var(--shadow-glow-pink);
}

/* ========================================
   Reviews Section
======================================== */
.reviews-section {
    padding: 6rem 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-header h2 {
    margin-bottom: 1rem;
}

.reviews-header p {
    color: var(--muted-foreground);
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.review-card:hover {
    border-color: rgba(236, 72, 153, 0.3);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 1rem;
    height: 1rem;
    fill: var(--primary);
    color: var(--primary);
}

.review-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-foreground);
}

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

.author-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.author-role {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(236, 72, 153, 0.1), transparent),
                radial-gradient(ellipse 60% 40% at 50% 100%, rgba(168, 85, 247, 0.1), transparent);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

/* ========================================
   About Section
======================================== */
.about-section {
    padding: 6rem 0;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    margin-bottom: 1.5rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .about-content {
        padding: 3rem;
    }
}

.about-content p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   Footer
======================================== */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(38, 38, 38, 0.5);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-icon {
    width: 2rem;
    height: 2rem;
}

.footer-logo .logo-icon svg {
    width: 1rem;
    height: 1rem;
}

.footer-logo span {
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--foreground);
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   Animations
======================================== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ========================================
   WordPress Specific
======================================== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    padding: 0.5rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
