/*
Theme Name: VCD - Video & Çizgi Dünyası
Theme URI: https://vcd.com
Author: VCD Eğitim
Author URI: https://vcd.com
Description: Çocuklar için renkli ve eğlenceli eğitim animasyon teması
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: vcd
Tags: children, education, animation, colorful, responsive
*/

/* ===== CSS VARIABLES ===== */
:root {
    --vcd-yellow: #FFD93D;
    --vcd-orange: #FF6B35;
    --vcd-pink: #FF4E8B;
    --vcd-purple: #7B4FE3;
    --vcd-blue: #3DB9FF;
    --vcd-green: #2ECC71;
    --vcd-dark: #1A1040;
    --vcd-light: #F8F4FF;
    --vcd-white: #FFFFFF;

    --font-display: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 50px;

    --shadow-card: 0 8px 32px rgba(123, 79, 227, 0.15);
    --shadow-btn: 0 6px 20px rgba(255, 107, 53, 0.4);
    --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--vcd-light);
    color: var(--vcd-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

/* ===== BACKGROUND PATTERN ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 217, 61, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 10%, rgba(61, 185, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 78, 139, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ===== HEADER / NAVBAR ===== */
#vcd-header {
    background: var(--vcd-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(26, 16, 64, 0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* LOGO */
.vcd-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--vcd-yellow), var(--vcd-orange));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    animation: logoBounce 3s ease-in-out infinite;
}

@keyframes logoBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(3deg); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
}

.logo-text span:nth-child(1) { color: var(--vcd-yellow); }
.logo-text span:nth-child(2) { color: var(--vcd-pink); }
.logo-text span:nth-child(3) { color: var(--vcd-blue); }

.logo-tagline {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -4px;
}

/* NAV MENU */
.vcd-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

.vcd-nav ul li a {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    display: block;
}

.vcd-nav ul li a:hover,
.vcd-nav ul li.current-menu-item a {
    background: rgba(255,255,255,0.12);
    color: var(--vcd-yellow);
}

/* HAMBURGER */
.vcd-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.vcd-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
#vcd-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 24px;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--vcd-dark) 0%, #2D1B6E 60%, #1A1040 100%);
    z-index: -1;
}

/* Floating stars */
.hero-stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: var(--vcd-yellow);
    display: inline-block;
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 440px;
    margin-bottom: 36px;
    line-height: 1.7;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--vcd-orange), var(--vcd-pink));
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-btn);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

/* HERO SVG AREA */
.hero-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-svg-stage {
    width: 100%;
    max-width: 460px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.svg-placeholder-text {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-display);
}

.svg-placeholder-text .icon {
    font-size: 64px;
    display: block;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-badge {
    position: absolute;
    background: var(--vcd-yellow);
    color: var(--vcd-dark);
    font-family: var(--font-display);
    font-size: 13px;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 12px rgba(255, 217, 61, 0.4);
    animation: float 2.5s ease-in-out infinite;
}

.hero-badge.badge-1 { top: 16px; right: -12px; animation-delay: 0s; }
.hero-badge.badge-2 { bottom: 16px; left: -12px; animation-delay: 1s; }

/* ===== SECTIONS COMMON ===== */
section {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    color: var(--vcd-dark);
    line-height: 1.2;
}

.section-title p {
    font-size: 17px;
    color: #6B7280;
    max-width: 520px;
    margin: 12px auto 0;
}

.section-pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--vcd-purple), var(--vcd-pink));
    color: white;
    font-family: var(--font-display);
    font-size: 13px;
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* ===== CATEGORIES SECTION ===== */
#vcd-categories {
    padding: 80px 24px;
    background: white;
}

.categories-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--vcd-light);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.3s;
    border-radius: var(--radius-md);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.category-card.cat-math { --cat-color: var(--vcd-blue); }
.category-card.cat-science { --cat-color: var(--vcd-green); }
.category-card.cat-lang { --cat-color: var(--vcd-pink); }
.category-card.cat-art { --cat-color: var(--vcd-orange); }
.category-card.cat-music { --cat-color: var(--vcd-purple); }
.category-card.cat-nature { --cat-color: #2ECC71; }

.category-card:hover {
    border-color: var(--cat-color);
}

.cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 14px;
    background: color-mix(in srgb, var(--cat-color) 15%, transparent);
    transition: var(--transition);
}

.category-card:hover .cat-icon {
    background: var(--cat-color);
    transform: scale(1.1) rotate(5deg);
}

.cat-name {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--vcd-dark);
}

.cat-count {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 4px;
}

/* ===== ANIMATIONS GRID ===== */
#vcd-animations {
    padding: 80px 24px;
}

.animations-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: white;
    border: 2px solid #E5E7EB;
    color: #6B7280;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--vcd-purple);
    border-color: var(--vcd-purple);
    color: white;
    transform: translateY(-2px);
}

/* ANIMATION CARDS */
.animations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.anim-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.anim-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(123, 79, 227, 0.2);
}

.anim-card-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--vcd-purple), var(--vcd-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.anim-card-thumb .svg-slot {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anim-card-thumb .play-btn {
    position: absolute;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
}

.anim-card:hover .play-btn {
    opacity: 1;
    transform: scale(1);
}

.anim-card-age {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--vcd-yellow);
    color: var(--vcd-dark);
    font-family: var(--font-display);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
}

.anim-card-body {
    padding: 18px;
}

.anim-card-cat {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vcd-purple);
    margin-bottom: 6px;
}

.anim-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--vcd-dark);
    margin-bottom: 8px;
}

.anim-card-desc {
    font-size: 13px;
    color: #9CA3AF;
    line-height: 1.5;
}

.anim-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #F3F4F6;
}

.anim-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #9CA3AF;
}

.anim-watch-btn {
    background: linear-gradient(135deg, var(--vcd-purple), var(--vcd-pink));
    color: white;
    font-family: var(--font-display);
    font-size: 13px;
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.anim-watch-btn:hover {
    transform: scale(1.05);
}

/* ===== FEATURES / WHY VCD ===== */
#vcd-features {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--vcd-dark) 0%, #2D1B6E 100%);
    clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
    margin: 40px 0;
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

#vcd-features .section-title h2 {
    color: white;
}

#vcd-features .section-title p {
    color: rgba(255,255,255,0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-6px);
    border-color: var(--vcd-yellow);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 18px;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ===== PARENTS SECTION ===== */
#vcd-parents {
    padding: 80px 24px;
    background: white;
}

.parents-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.parents-svg {
    background: var(--vcd-light);
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    border: 3px dashed rgba(123, 79, 227, 0.2);
}

.parents-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--vcd-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.parents-content p {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 28px;
    line-height: 1.7;
}

.parents-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.parents-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--vcd-dark);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--vcd-green), #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== NEWSLETTER ===== */
#vcd-newsletter {
    padding: 80px 24px;
    text-align: center;
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--vcd-yellow), var(--vcd-orange));
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.newsletter-inner h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: white;
    margin-bottom: 12px;
}

.newsletter-inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius-xl);
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.newsletter-form button {
    background: var(--vcd-dark);
    color: white;
    font-family: var(--font-display);
    font-size: 15px;
    padding: 14px 24px;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--vcd-purple);
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
#vcd-footer {
    background: var(--vcd-dark);
    padding: 60px 24px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-tagline {
    font-size: 11px;
    margin-top: 8px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--vcd-yellow);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-hearts {
    color: var(--vcd-pink);
}

/* ===== FLOATING MASCOT ===== */
.floating-mascot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    cursor: pointer;
    animation: float 4s ease-in-out infinite;
}

.mascot-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 16px 16px 4px 16px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--vcd-dark);
    white-space: nowrap;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    pointer-events: none;
}

.floating-mascot:hover .mascot-bubble {
    opacity: 1;
    transform: translateY(0);
}

.mascot-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--vcd-purple), var(--vcd-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(123, 79, 227, 0.4);
}

/* ===== PAGE / SINGLE ===== */
.vcd-content-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.vcd-page-header {
    text-align: center;
    padding: 80px 24px 40px;
    background: linear-gradient(135deg, var(--vcd-dark), #2D1B6E);
}

.vcd-page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    color: white;
}

.vcd-page-header p {
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
}

.vcd-post {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-card);
}

.vcd-post h2, .vcd-post h3 {
    font-family: var(--font-display);
    color: var(--vcd-dark);
    margin: 28px 0 12px;
}

.vcd-post p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* SVG ANIMATION DISPLAY */
.vcd-animation-container {
    background: var(--vcd-light);
    border: 3px dashed rgba(123, 79, 227, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcd-animation-container svg {
    max-width: 100%;
    height: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-animation { order: -1; }
    .hero-svg-stage { max-width: 340px; }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .parents-inner {
        grid-template-columns: 1fr;
    }
    .parents-svg { max-width: 300px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .vcd-nav { display: none; }
    .vcd-hamburger { display: flex; }

    .vcd-nav.open {
        display: flex;
        position: fixed;
        inset: 72px 0 0 0;
        background: var(--vcd-dark);
        flex-direction: column;
        padding: 24px;
        z-index: 999;
    }

    .vcd-nav.open ul {
        flex-direction: column;
        gap: 8px;
    }

    .vcd-nav.open ul li a {
        font-size: 20px;
        padding: 14px 20px;
    }

    .footer-top { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .vcd-post { padding: 28px 20px; }

    #vcd-features {
        clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
    }
}

/* ===== WORDPRESS ALIGNMENTS ===== */
.alignleft { float: left; margin: 0 24px 24px 0; }
.alignright { float: right; margin: 0 0 24px 24px; }
.aligncenter { display: block; margin: 0 auto 24px; }
.wp-caption { max-width: 100%; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
