/* style.css */

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

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #f7f7f7;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Custom styles for elements that need specific overrides or non-Tailwind effects */
.header-top-bar {
    background-color: #ffffff; /* Or a very light grey if preferred */
    padding: 8px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #4a5568; /* Grey text */
}

/* Hero Section with video background */
.hero-section {
    position: relative;
    /* Ensure content is centered vertically */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px; /* Minimum height for the hero section */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire area */
    z-index: 0; /* Place behind content */
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    position: absolute;
    inset: 0;
    z-index: 1; /* Above video, below text */
}

/* Button primary styling */
.button-primary {
    background-color: #3182ce; /* Blue background */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 9999px; /* Fully rounded */
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #2b6cb0; /* Darker blue on hover */
}

/* Navigation link hover effect */
.navbar-link:hover {
    color: #3182ce; /* Blue on hover */
}
