/* ============================================
   TAROT LANDING PAGE - MYSTICAL DARK THEME
   ============================================ */

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --accent-orange: #ff6b35;
    --accent-gold: #ffb84d;
    --accent-red: #ff4757;
    --glow-orange: rgba(255, 107, 53, 0.3);
    --glow-gold: rgba(255, 184, 77, 0.2);
    --border-gold: rgba(255, 184, 77, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
    /* Subtle animated particles overlay */
    background-image: 
        /* Mystical floating particles */
        radial-gradient(1px 1px at 20% 30%, rgba(255, 184, 77, 0.4), transparent),
        radial-gradient(1px 1px at 60% 80%, rgba(138, 43, 226, 0.4), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(255, 184, 77, 0.3), transparent),
        radial-gradient(1px 1px at 40% 90%, rgba(138, 43, 226, 0.3), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%;
    background-attachment: fixed;
    animation: mysticalDrift 25s linear infinite;
}

/* Global background image with mystical tarot overlay
   Enhanced with multiple layers for depth and mystery */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    /* Layered cosmic background: subtle starfield + nebulas + base image */
    background:
        /* Soft starfield (tiny dots) */
        radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.15) 50%, transparent 51%),
        radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.12) 50%, transparent 51%),
        radial-gradient(1px 1px at 70% 30%, rgba(255,255,255,0.10) 50%, transparent 51%),
        radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.12) 50%, transparent 51%),
        /* Nebula glows */
        radial-gradient(ellipse 60% 40% at 20% 20%, rgba(186, 85, 211, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 80% 30%, rgba(255, 105, 180, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 55% 40% at 30% 80%, rgba(255, 184, 77, 0.12) 0%, transparent 65%),
        /* Deep vignette (slightly more dark) */
        linear-gradient(180deg, rgba(10, 5, 20, 0.58) 0%, rgba(5, 5, 5, 0.72) 55%, rgba(15, 5, 25, 0.62) 100%),
        /* Optional base image if present (kept for compatibility) */
        url('fon_back.jpg') center top/cover no-repeat;
    filter: brightness(0.99) contrast(1.05) saturate(1.04);
    background-size: auto, auto, auto, auto, 200% 200%, 220% 220%, 220% 220%, cover, cover;
    animation:
        starsDrift 40s linear infinite,
        nebulaDrift 35s ease-in-out infinite,
        mysticalPulse 8s ease-in-out infinite;
    will-change: transform, opacity, background-position, filter;
    transform: translateZ(0);
    backface-visibility: hidden;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* Moving fog/aurora veil for extra depth */
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 184, 77, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 65% 55% at 60% 40%, rgba(186, 85, 211, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 70% 60% at 40% 70%, rgba(255, 105, 180, 0.08) 0%, transparent 70%),
        conic-gradient(from 180deg at 50% 50%, rgba(255, 184, 77, 0.06), rgba(138, 43, 226, 0.06), rgba(255, 105, 180, 0.06), rgba(255, 184, 77, 0.06));
    pointer-events: none;
    mix-blend-mode: screen;
    animation:
        gentleGlow 10s ease-in-out infinite,
        auroraShift 30s ease-in-out infinite;
    will-change: transform, opacity, background-position;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Animated mystical pulse effect - breathing background */
@keyframes mysticalPulse {
    0%, 100% { 
        opacity: 1;
        filter: brightness(0.7) contrast(1.1) saturate(0.9);
    }
    50% { 
        opacity: 0.95;
        filter: brightness(0.75) contrast(1.15) saturate(1);
    }
}

/* Gentle glow animation for mystical atmosphere */
@keyframes gentleGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Slow starfield drift */
@keyframes starsDrift {
    0% { background-position: 0 0, 0 0, 0 0, 0 0, 0% 0%, 100% 0%, 0% 100%, center, center; }
    50% { background-position: 10px 20px, -15px 10px, 20px -10px, -10px -20px, 50% 50%, 40% 60%, 60% 40%, center, center; }
    100% { background-position: 0 0, 0 0, 0 0, 0 0, 0% 0%, 100% 0%, 0% 100%, center, center; }
}

/* Nebula subtle drift */
@keyframes nebulaDrift {
    0% { filter: brightness(0.7) contrast(1.1) saturate(0.9); }
    50% { filter: brightness(0.74) contrast(1.12) saturate(0.98); }
    100% { filter: brightness(0.7) contrast(1.1) saturate(0.9); }
}

/* Aurora-like slow shift */
@keyframes auroraShift {
    0% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
    50% { background-position: 100% 50%, 50% 100%, 0% 50%, 100% 0%; }
    100% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
}

/* Floating mystical particles animation */
@keyframes mysticalDrift {
    0% { 
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%;
    }
    50% { 
        background-position: 100% 50%, 0% 50%, 0% 0%, 100% 0%;
    }
    100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Instagram Button */
.instagram-switcher {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
}

.instagram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.instagram-btn:hover {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.instagram-btn svg {
    width: 18px;
    height: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Semi‑transparent header to let background show through */
    background: rgba(10, 10, 10, 0.22);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 184, 77, 0.08);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 20px var(--glow-gold);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

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

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

.nav a:hover::after {
    width: 100%;
}

.btn-header {
    background: var(--text-primary);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-header:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--glow-gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Полностью прозрачный слой, чтобы фон был сплошным без «перемычки» */
    background: transparent;
    z-index: -1;
    /* Avoid background-attachment: fixed to reduce scroll jank */
    background-attachment: scroll;
    will-change: opacity, transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Soft animated aurora overlay for hero (parallax feel) */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(60% 40% at 20% 30%, rgba(186, 85, 211, 0.15) 0%, transparent 60%),
        radial-gradient(55% 35% at 80% 60%, rgba(255, 105, 180, 0.12) 0%, transparent 65%);
    mix-blend-mode: screen;
    animation: auroraShift 28s ease-in-out infinite;
    z-index: 0;
    will-change: transform, opacity, background-position;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Дополнительное затемнение справа для более органичного вида */
.hero-bg::before { content: none; }

/* Glowing Hands Effect */
.glow-hands {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hand {
    position: absolute;
    width: 400px;
    height: 600px;
    background: radial-gradient(ellipse at center, var(--glow-orange) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.hand.left {
    left: -200px;
    top: -100px;
    transform: rotate(-20deg);
    animation-delay: 0s;
}

.hand.right {
    right: -200px;
    top: -100px;
    transform: rotate(20deg);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-30px) rotate(calc(var(--rotation, 0deg) + 5deg)); }
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 184, 77, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 107, 53, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 184, 77, 0.4), transparent);
    background-size: 200% 200%;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.hero .container {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 184, 77, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-gold);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text-primary);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.image-frame {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--glow-gold);
}

.image-placeholder {
    background: var(--bg-darker);
    aspect-ratio: 3/4;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 48px;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
}

.mystical-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.astral-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 30% 40%, var(--accent-gold), transparent),
        radial-gradient(1px 1px at 70% 60%, var(--accent-orange), transparent);
    opacity: 0.3;
}

.about-badge {
    display: inline-block;
    background: rgba(255, 184, 77, 0.1);
    border: 1px solid var(--border-gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-description p {
    margin-bottom: 20px;
}

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

.about-description strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 77, 0.1);
    border-radius: 50%;
}

.feature-item p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 77, 0.1);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px var(--glow-gold);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin-top: 15px;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: transparent;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 77, 0.1);
    padding: 30px;
    border-radius: 12px;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 184, 77, 0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px var(--glow-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: transparent;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 77, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--accent-gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: transparent;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 77, 0.1);
    padding: 30px;
    border-radius: 12px;
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 77, 0.1);
    border-radius: 50%;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--accent-gold);
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.contact-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 184, 77, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero .container {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 0;
        max-width: calc(100% - 40px);
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    /* На мобильной версии используем те же фоновые слои и размеры иконок, что и на ПК */

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

    .section-title {
        font-size: 36px;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }

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

    .btn {
        justify-content: center;
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    body, body::before, body::after, .hero::after {
        animation: none !important;
    }
}
