@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Apply Poppins to the body */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Custom styles for the video/image background to ensure full coverage */
.hero-video-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* This class is now applied to the image to ensure it covers the viewport */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures image covers and crops if needed */
}

/* Custom aspect ratio for YouTube embed */
.aspect-h-9 {
    padding-bottom: 56.25%; /* 9/16 * 100 */
}

.aspect-w-16 {
    position: relative;
    height: 0;
}

.aspect-w-16 iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0.75rem; /* rounded-xl */
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111827; 
}

::-webkit-scrollbar-thumb {
    background: #DC2626; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B91C1C; 
}
