/* Hard reset for the hero section and video */
.hero {
    position: relative !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden !important;
    background-color: transparent !important;
    background-image: none !important; /* Ensure no background image */
    background: none !important; /* Override any background shorthand */
}

#hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    z-index: -1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    filter: brightness(0.7) !important;
}

/* Only apply fallback when necessary */
.hero.video-fallback {
    background-color: #121212 !important;
    background-image: url('images/unshakeable_thumbnail.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Ensure the hero content is visible above the video */
.hero-container {
    position: relative !important;
    z-index: 2 !important;
    width: 90% !important;
    max-width: 1200px !important;
}

.hero-content {
    max-width: 1000px !important;
}

.hero-content h1 {
    font-size: 4rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
}

.hero-content p {
    font-size: 1.5rem !important;
    margin-bottom: 2.5rem !important;
    opacity: 0.9 !important;
}

.highlight {
    font-style: normal !important;
}

.hero-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 1.5rem !important;
}

.btn {
    padding: 1rem 2rem !important;
    border-radius: 2.5rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
}

/* Fix any z-index issues with overlays */
.hero::after {
    display: none !important; /* Disable this element to see if it's causing the problem */
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.2) !important;
    z-index: 0 !important;
}

/* Fix for Contact Background */
.contact-background {
    position: relative !important;
    min-height: 400px !important;
    /* Try multiple image paths to find which one works */
    background-image: url('images/IMG_2334.JPG') !important; /* Original relative path */
    background-image: url('./images/IMG_2334.JPG') !important; /* Explicit relative path */
    background-image: url('/images/IMG_2334.JPG') !important; /* Root relative path */
    background-image: url('images/IMG_2334.JPG') !important; /* No quotes */
    background-attachment: scroll !important; /* Override fixed attachment */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 80px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    color: white !important;
    z-index: 1 !important;
}

.contact-background::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    z-index: 1 !important;
}

.contact-background h2,
.contact-background p,
.contact-background a,
.contact-background .btn {
    position: relative !important;
    z-index: 2 !important;
    color: white !important;
} 