/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(13, 19, 33, 0.7), rgba(13, 19, 33, 0.7)),
                url('../../images/DHAB_bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding-top: var(--navbar-height);
}

/* Animated Background Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(234, 85, 71, 0.08),
        rgba(104, 72, 47, 0.08),
        rgba(253, 198, 44, 0.05)
    );
    background-size: 300% 300%;
    animation: gradientBG 12s ease infinite;
    z-index: 0;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: min(90%, 1440px);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: min(4rem, 4vw);
    align-items: center;
    height: calc(100vh - var(--navbar-height) - 100px);
    padding: 2rem 0;
}

.hero-left {
    max-width: min(600px, 42vw);
}

.hero-title {
    font-size: min(4rem, 3.5vw);
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: min(1.1rem, 1.1vw);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-button {
    display: inline-block;
    padding: min(0.9rem, 1vw) min(2rem, 2vw);
    font-size: min(0.9rem, 1vw);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-button.primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.hero-button.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button.primary:hover {
    background: #ff4635;
}

.hero-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-right {
    width: 100%;
    position: relative;
    z-index: 2;
}

.video-container {
    position: relative;
    width: min(100%, 60vw);
    padding-bottom: min(56.25%, 33.75vw);
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    z-index: 3;
}

/* Add play button overlay */
.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover::after {
    opacity: 1;
}

.hero-bottom-text {
    font-family: 'Dancing Script', cursive;
    font-size: min(1.8rem, 1.8vw);
    color: white;
    text-align: center;
    padding: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

/* Large Screens (1440px and above) */
@media (min-width: 1440px) {
    .hero-container {
        max-width: min(1440px, 80%);
        margin: 0 auto;
    }

    .hero-content {
        gap: min(4rem, 3vw);
    }

    .video-container {
        max-width: min(800px, 50vw);
    }
}

/* Extra Large Screens (2198px and above) */
@media (min-width: 2198px) {
    .hero-container {
        max-width: min(1800px, 70%);
    }

    .hero-content {
        gap: min(4rem, 2vw);
    }

    .video-container {
        max-width: min(1000px, 45vw);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        height: auto;
        padding: 3rem 0;
    }

    .hero-left {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        max-width: 800px;
        margin: 0 auto;
    }

    .video-container {
        transform: none;
        width: 100%;
        padding-bottom: 56.25%;
    }

    .hero-bottom-text {
        font-size: 1.6rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 640px) {
    .hero-section {
        min-height: auto;
        padding-top: 80px;
    }

    .hero-container {
        padding: 1.5rem;
    }

    .hero-content {
        gap: 2.5rem;
        padding: 2rem 0;
        height: auto;
        min-height: calc(100vh - 120px);
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .video-container {
        width: 100%;
        max-width: 500px;
        border-radius: 8px;
    }

    .hero-bottom-text {
        font-size: 1.4rem;
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 1rem;
    }

    .hero-content {
        gap: 2rem;
        padding: 1.5rem 0;
        min-height: calc(100vh - 100px);
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-buttons {
        gap: 0.8rem;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-button {
        padding: 0.75rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .video-container {
        max-width: 400px;
        border-radius: 6px;
    }

    .hero-bottom-text {
        font-size: 1.2rem;
        padding: 0.8rem 0;
    }
}

@media (max-width: 425px) {
    .hero-section {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .hero-button {
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 320px) {
    .hero-container {
        padding: 0.8rem;
    }

    .hero-content {
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        gap: 0.6rem;
        max-width: 250px;
    }

    .hero-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.7rem;
    }

    .video-container {
        max-width: 280px;
    }

    .hero-bottom-text {
        font-size: 1rem;
        padding: 0.6rem 0;
    }
} 