body,
html {
    height: 100%;
    margin: 0;
    font-family: "Inter", sans-serif;
}

.hero-section {
    position: relative;
    height: 100vh;
    background-image: url("../images/landingCoiaLeague.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.social-icons {
    position: absolute;
    right: 40px;
    bottom: 100px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    transition: transform 0.2s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.hero-button {
    border: 2px solid #fff;
    padding: 0.75rem 2.5rem;
    font-size: 1.2rem;
    color: white;
    transition: 0.3s ease;
    background-color: transparent;
}

.hero-button:hover {
    background-color: white;
    color: black;
}

.navbar {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 1rem 0;
}

.navbar .nav-link {
    color: #fff; 
    margin: 0 1rem; 
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}
.navbar .nav-link:hover {
    transform: scale(1.1);
    color: #ececec; 
}

.navbar-toggler {
    color: #fff;
}
.navbar-toggler-icon {
    filter: invert(1); 
}

.navbar-brand {
    color: #fff;
    font-family: "Inter", sans-serif;
}

@media (max-width: 991.98px) {
    #navbarResponsive {
        background-color: rgba(0, 0, 0, 0.7); 
        padding: 1rem;
        border-radius: 0.5rem;
    }
    #navbarResponsive .nav-link {
        color: #fff; 
        margin: 0.5rem 0;
    }
    #navbarResponsive .nav-link:hover {
        color: #ececec; 
        background-color: transparent;
        transform: translateX(5px) !important; 
    }
}
