/* --- 1. CORE VARIABLES & SETUP --- */
:root {
    --bh-red: #a80d0c;
    --bh-red-dark: #6B1D1D;
    --bh-grey: #5e6a79;
    --bh-sand: #FDFBFA;
    --bh-font: 'Quicksand', sans-serif;
    --bh-heading: 'Comfortaa', cursive;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--bh-font);
    background-color: var(--bh-sand);
    color: #2D3436;
    overflow-x: hidden;
    line-height: 1.7;
}

/* --- 2. VIDEO HERO SECTION --- */
.hero-video-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -115px;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--bh-red-dark);
    opacity: 0.7;
    z-index: -1;
}

.hero-content {
    z-index: 1;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-family: var(--bh-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

/* --- 3. GLOBAL BUTTONS & COMPONENTS --- */
.btn-custom {
    background: var(--bh-red);
    color: white !important;
    border-radius: 100px;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 20px rgba(168, 13, 12, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-decoration: none;
}

.btn-custom:hover {
    transform: translateY(-3px);
    background: var(--bh-grey);
    box-shadow: 0 15px 25px rgba(94, 106, 121, 0.25);
}

.rounded-custom {
    border-radius: 40px 120px 40px 40px;
    border: 10px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- 4. LEGAL & TEXT CONTENT --- */
.legal-content p,
.legal-content li {
    color: var(--bh-grey);
    opacity: 0.85;
    line-height: 1.8;
}

.legal-content h3,
.legal-content h4 {
    font-family: var(--bh-heading);
    color: var(--bh-grey);
    font-weight: 700;
}

/* --- 5. ANIMATIONS --- */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-floating-card {
    animation: floating 4s ease-in-out infinite;
}

/* --- 6. FOOTER --- */
footer {
    background: var(--bh-grey);
    color: white;
    padding: 100px 0 40px;
    border-radius: 80px 80px 0 0;
    margin-top: 100px;
}