@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

:root {
    --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-display: 'Montserrat', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Custom styles to supplement Tailwind */
body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
}

.hero-bg {
    position: relative;
    background-image: linear-gradient(rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.85)), url('/assets/home-hero.jpg');
    background-size: cover;
    background-position: top;
}

.hero-bg h1,
.hero-bg p,
.hero-bg a {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(234, 191, 63, 0.50) 0%, rgba(234, 191, 63, 0.28) 35%, rgba(234, 191, 63, 0.10) 70%, rgba(234, 191, 63, 0) 100%),
        linear-gradient(120deg, rgba(234, 191, 63, 0.35), rgba(234, 191, 63, 0.18));
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.85) 78%, rgba(0, 0, 0, 0.95) 100%);
    pointer-events: none;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.02em;
}

nav a {
    font-family: var(--font-display);
    letter-spacing: 0.03em;
}

h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

h1 {
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-weight: 600;
    line-height: 1.4;
}

p {
    color: #4B5563;
}

[data-slider] [data-slide] img {
    transition: opacity 600ms ease;
}

.bci-dots {
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.bci-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.bci-dot-active {
    background: #f59e0b;
    border-color: #f59e0b;
    transform: scale(1.2);
}
