@import url("style.css");
@import url("main.css");
/* 2. Hero Section Container */
.hero-section-2 {
    position: relative;
    height: 100vh; /* Full viewport height */
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: white;
}

/* 3. Background Video Styling */
#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover; /* Ensures video covers area without stretching */
}

/* 4. Dark Overlay (Crucial for text readability) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 60% opacity black */
    z-index: 0;
}

/* 5. Content Layer */
.hero-content {
    position: relative;
    z-index: 2; /* Sits on top of overlay */
    flex-grow: 1; /* Pushes content to fill space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical Center */
    align-items: center; /* Horizontal Center */
    text-align: center;
}

/* 6. Navigation Styling */

/* 7. Typography and Buttons */
.display-heading {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lead-text {
    font-family: var(--default-font);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

/* Custom Gold Button */
.btn-gold {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: white;
    padding: 12px 35px;
    border-radius: 0; /* Boxy corners like image */
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Transparent Outline Button */
.btn-outline-custom {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: white;
    color: black;
}

/* 8. Bottom Scroll Arrow */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .display-heading {
        font-size: 2.2rem;
    }
}
