/* General Reset and Box-Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

/* Header */
.site-header {
    position: relative;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 75vh; /* Full height of the viewport */
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes sure the image covers the container */
    object-position: center center; /* Centers the image */
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Text Container */
.text-container {
    color: white;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

.main-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.subheading {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #FF5722; /* Example color */
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #E64A19; /* Darker shade on hover */
}

.navbar-hero{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
    background: transparent; /* Default: no background */
    transition: background 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.5);
    color: white;
}



/* Navigation Links */
.nav-links-Hero {
    margin-right: 50px;
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

    .nav-links-Hero li {
        display: inline;
    }

    .nav-links-Hero a {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    text-transform: uppercase;        
    text-decoration: none;        
    transition: color 0.3s ease;
    }
    .nav-links-Hero a:hover {
        color: gray;
    }

/* Responsive Styles */
@media (max-width: 1200px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subheading {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 25px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 80vh; /* Slightly smaller height on tablets */
    }

    .main-title {
        font-size: 2rem;
    }

    .subheading {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh; /* Even smaller height on smaller screens */
    }

    .main-title {
        font-size: 1.8rem;
    }

    .subheading {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 60vh; /* Smallest height on mobile screens */
    }

    .main-title {
        font-size: 1.6rem;
    }

    .subheading {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 1rem;
    }
}
