:root {
    --primary: #ff61ba;
    --primary-dark: #21052d; 
    --bg-dark: #070718;
    --bg-darker: #151515;
    --text-light: rgb(255, 255, 255);
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    margin: 0;
    padding: 0;
/*
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;*/
    scroll-behavior: smooth;

    background-size: cover;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
  }

/* TEXT SECTION */
/* Ensure that your texts inherits the following text levels */

/* For the fist level of heading */
  .level1{  
    margin-top: 10px;
    /* margin-left: 50px; */
    font-size: 3.5rem;
    color: white;
    border: none;
    text-align: center;
}

/* For all sub headings */
.level2{
    font-size: 1.5rem;
    margin-bottom: 2rem;
    /* max-width: 800px; */
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* For all para contents */

.level3{
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 480px) { /* Small screens */
    .level1 {
        font-size: 35px;
    }
}
@media (max-width: 992px) { /* Tablets */
    .level1{
        font-size: 50px;
    }
}

@media (max-width: 768px) { /* Mobile devices */
    .level1 {
        font-size: 40px;
    }
}

/* TEXT SECTION */

.navtitle{
    height: 50px;
    width: auto;
}

.navbar {
    background-color: rgba(28, 28, 28, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    width: 100%;
}

.navbar-brand {
    text-align: left;
    font-family: "Tilt Prism", serif;
    font-weight: 300;
    font-size: 1.5rem;
}

.nav-link {
    text-align: left;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
    font-weight: 600;
}

.nav-link.active {
    color: #ff61ba !important;
    font-weight: 700;
}
@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    .navbar-brand {
            font-family: "Tilt Prism", serif;
            font-weight: 300;
            margin-left: 10px;
        }
        .navbar-toggler {
            margin-right: 10px;
        }
    }
    /*Footer section*/
footer {
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

footer p {
    margin: 0.2rem 0;
    color: var(--text-light);
    text-align: left;
}
    @media (max-width: 768px) {
        .hover-box .names-list {
            position: relative;
            top: 10px;
            left: 0;
        }

        .hover-box span {
            font-size: 16px;
        }

        .names-list p {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .hover-box span {
            font-size: 14px;
        }

        .names-list p {
            font-size: 12px;
        }
    }

    .tooltip-trigger {
        position: relative;
        cursor: pointer;
        text-decoration: underline;
        display: inline-block;
    }

    .tooltip-text {
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.9);
        color: #fff;
        text-align: left;
        padding: 10px;
        border-radius: 5px;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        font-size: 14px;
        z-index: 1000;
        white-space: normal; /* Allows text wrapping */
        width: 250px; /* Set a width for better readability */
        max-width: 100%;
    }

    .tooltip-trigger:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }
    footer {
    all: unset; /* Resets inherited styles */
    background-color: rgba(28, 28, 28, 0.95);
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    position: relative;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Prevent footer from being affected by body's flexbox */
body > footer {
    display: block;
}
 @media (max-width: 768px) {
        .navbar-brand {
          font-size: 1.2rem;
        }

        .nav-link {
          padding: 0.3rem;
          font-size: 0.9rem;
        }}

        @media (max-width: 480px) {
            .navbar-brand {
              font-size: 1rem;
            }
    
            .nav-link {
              font-size: 0.8rem;
            }
        }    
