/* ============================
   HERO SECTION
   ============================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 480px;
    overflow: hidden;
    display: block;
    background-color: #000;
    box-sizing: border-box;
}

/* Blurred background video */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    filter: blur(5px) brightness(0.6);
    z-index: 0;
    pointer-events: none;
}

/* Hide raw video element */
.hero-video {
    display: none !important;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 2;
    pointer-events: none;
}

/* Content container */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;   /* stack title + button vertically */
    align-items: center;      /* center horizontally */
    text-align: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    max-width: 1200px;
    width: 90%;
    box-sizing: border-box;
}

/* Title */
.hero-title {
    display: block;           /* ensure it takes full row */
    width: 100%;
    color: #fff;
    font-size: 5.5rem;
    font-weight: normal;
    margin: 0;
    line-height: 1.05;
    font-family: var(--header-font) !important;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.5),
        0 4px 8px rgba(0,0,0,0.6),
        0 6px 12px rgba(0,0,0,0.7);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s forwards;
}

.hero-content h1.hero-title {
    font-family: 'Algerian' !important;
}

/* CTA Button */
.hero-cta-btn {
    display: inline-flex;          /* stays its own flex item row */
    align-items: center;
    justify-content: center;
    align-self: center;            /* center within flex column */
    margin-top: 0.75rem;
    padding: 0.9rem 2rem;
    font-family: var(--header-font);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #c8a763, #7b6c55);
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(200,167,99,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    z-index: 4;
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp 1s forwards;
    animation-delay: 0.6s;
}

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 32px rgba(200,167,99,0.45);
    background: linear-gradient(135deg, #7b6c55, #c8a763);
}

/* Title Fade-Up Animation */
@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    .hero-cta-btn {
        font-size: 2rem;
        padding: 0.85rem 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-btn {
        font-size: 2rem;
        padding: 0.7rem 1.5rem;
    }
}
