@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Figtree:wght@300..900&display=swap');

:root {
    --baile-bg: #fffaf5;
    --baile-surface: #fff0e8;
    --baile-primary: #d94f3b;
    --baile-primary-hover: #c44433;
    --baile-text: #2a1f1b;
    --baile-text-muted: #7a6e68;
    --baile-accent: #d9a441;
    --baile-dark: #1c1412;
    --baile-dark-text: #f5ede8;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Figtree', system-ui, sans-serif;
}

body {
    font-family: var(--font-body) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Animations ── */

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

.anim-fade-up {
    animation: fadeUp 0.7s ease-out both;
}

.anim-fade-up-1 {
    animation: fadeUp 0.7s ease-out 0.12s both;
}

.anim-fade-up-2 {
    animation: fadeUp 0.7s ease-out 0.24s both;
}

.anim-fade-up-3 {
    animation: fadeUp 0.7s ease-out 0.36s both;
}

.anim-fade-up-4 {
    animation: fadeUp 0.7s ease-out 0.48s both;
}

.anim-fade-up-5 {
    animation: fadeUp 0.7s ease-out 0.6s both;
}

/* ── Hero background blobs ── */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(217, 164, 65, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(217, 79, 59, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* ── Feature cards ── */

.feature-card {
    transition: transform 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

/* ── Dance pills ── */

.dance-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1.5px solid rgba(42, 31, 27, 0.1);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--baile-text);
    background: white;
    transition: all 0.2s ease;
    cursor: default;
}

.dance-pill:hover {
    border-color: var(--baile-primary);
    color: var(--baile-primary);
}

/* ── CTA buttons ── */

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 999px;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.cta-btn:focus-visible {
    outline: 2px solid var(--baile-primary);
    outline-offset: 2px;
}

.cta-btn--primary {
    background: var(--baile-primary);
    color: white;
}

.cta-btn--primary:hover {
    background: var(--baile-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(217, 79, 59, 0.3);
}

.cta-btn--dark {
    background: transparent;
    color: var(--baile-dark-text);
    border: 2px solid rgba(245, 237, 232, 0.25);
}

.cta-btn--dark:hover {
    border-color: rgba(245, 237, 232, 0.5);
    background: rgba(245, 237, 232, 0.06);
    transform: translateY(-1px);
}

.cta-btn--dark:focus-visible {
    outline-color: var(--baile-dark-text);
}
