@import url('https://fonts.cdnfonts.com/css/nunito');

/* Top Bar */

/* Top Bar Logo Container */
.topbar-logo-container {
    display: flex;
    justify-content: center; /* Centers the logo horizontally */
}

/* Logo Shining Effect */
.topbar-logo-shining {
    max-width: 100%; /* Ensure it scales within container */
    width: 300px; /* Base width */
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    transition: all 0.3s ease-in-out; /* Smooth resizing */
}


/* Shining animation using a pseudo-element */
.logo-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* Start the shine effect off-screen */
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine 3s infinite; /* Infinite loop for the shine animation */
    pointer-events: none; /* Prevent interaction with the pseudo-element */
    z-index: 1; /* Ensure it appears above the logo */
}




/* top bar: desktop view */ 
.top-bar {
    position: fixed; 
    top: 0; 
    left: 0; 
    width:95%; 
    height: 120px; 
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    padding: 0 50px; 
    z-index: 10000; 
    background-color: #2b003a;
    font-family: 'Nunito'; 
}

.top-bar-navlist {
    position: relative; 
    display: flex; 
    justify-content: center;
    align-items: center;
}

.top-bar-navlist li {
    position: relative; 
    list-style: none; 
    /*background-color: #2b003a;*/
    margin: 0 15px; 
    right: 0; 
}

.top-bar-navlist li a {
    position: relative; 
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 2px;
    transition: 0.6s;
    text-align: center;
}

.top-bar-navlist li a:hover {
    position: relative; 
    font-weight: 700;
    color: #ff69b4;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 2px;
    transition: 0.6s;
    text-align: center;
}




/* top bar: hamburger view */ 
/* modified from https://github.com/javascriptacademy-stash/responsive-navbar */
#topbar-hamburger {
    position: relative; 
    right: 50px; 
    display: none; 
    cursor: pointer; 
    margin-left: 80px; 
}

#topbar-hamburger div {
    position: relative; 
    width: 35px; 
    height: 3px; 
    background-color: white; 
    margin: 6px 0; 
    transition: 0.4s; 
}

.open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
}
  
.open .bar2 {
    opacity: 0;
}
  
.open .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -8px);
    transform: rotate(45deg) translate(-6px, -8px);
}
  
.open .topbar-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
  
.topbar-mobile-menu {
    display: none;
    position: absolute;
    top: 50px;
    height: fit-content;
    width: fit-content;
    padding: 10px 10px; 
    right: 0; 
    background-color: #2b003a;
    align-content: center;
    border-radius: 10px; 
    border-color: #13001a;
}
  
.topbar-mobile-menu li {
    margin-bottom: 5px;
    position: relative; 
    list-style: none; 
}

.topbar-mobile-menu li a {
    position: relative; 
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 2px;
    transition: 0.6s;
    text-align: center;
}

.topbar-mobile-menu li a:hover {
    position: relative; 
    font-weight: 700;
    color: #ff69b4;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 2px;
    transition: 0.6s;
    text-align: center;
}

.topbar-mobile-menu li div {
    min-width: 10px;
}



@media only screen and (max-width: 1200px) {
    .top-bar-navlist {
        display: none; 
    }

    #topbar-hamburger {
        display: block; 
    }
}








/* things that are not in topbar (including bottombar) - topbar is sticky, so the rest should be in here */ 
.non-topbar-content {
    position: relative; 
    height: 100%; 
    width: 100%; 
    left: 0; 
    padding-top: 120px; 
    align-items: center;
    justify-content: center;
    align-items: center;
    display: flex;
}


/* bottom bar - not sticky bar, just some info. This will be put inside non-bar-content */

.bottom-bar {
    position: relative; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    /*width:100%; */
    display: block; 
    justify-content: space-between;
    align-items: center; 
    margin: 20px 0; 
    padding: 20px 50px; 
    background: #412b80; 
}

.bottombar-about-us-section {
    color: #ffffff; 
}

.bottom-bar h1 {
    color: #ffffff; 
}

.bottom-bar p {
    color: #ffffff; 
}



/* About Us Section Styling - part of bottom bar */
.bottombar-about-us-section {
    /*background: rgba(255, 255, 255, 0.1);*/
    /*border-radius: 20px;*/
    padding: 30px 40px;
    max-width: 800px;
    margin: 10px auto;
    /*box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);*/
    /*backdrop-filter: blur(10px);*/
    color: white;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

/* About Us Section Header */
.bottombar-about-us-section h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Dejavu sans', sans-serif;
    color: #ff69b4;
}

.bottombar-about-us-section p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

/* Responsive Adjustments for Tablets */
@media screen and (max-width: 768px) {
    .bottombar-about-us-section {
        padding: 20px 30px;
        font-size: 14px;
    }

    .bottombar-about-us-section h1 {
        font-size: 28px;
    }

    .bottombar-about-us-section p {
        font-size: 14px;
    }
}

/* Responsive Adjustments for Mobile Screens */
@media screen and (max-width: 480px) {
    .bottombar-about-us-section {
        padding: 15px 20px;
        font-size: 12px;
    }

    .bottombar-about-us-section h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .bottombar-about-us-section p {
        font-size: 12px;
        line-height: 1.4;
    }

}



/* Links inside the About Us section */
.bottombar-about-us-section a {
    color: #ff69b4; /* Keeps the links highlighted in pink */
    text-decoration: none; /* Removes underline */
    font-weight: 700; /* Emphasizes the links with bold text */
    position: relative; /* For pseudo-element positioning */
    transition: transform 0.3s ease; /* Smooth transition for hover effects */
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.5), 0 0 10px rgba(255, 105, 180, 0.4); /* Adds a glowing effect */
}

/* Hover Effect for Links */
.bottombar-about-us-section a:hover {
    transform: scale(1.1); /* Enlarges the text slightly */
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.7), 0 0 20px rgba(255, 105, 180, 0.6); /* Intensifies the glow */
}

/* Underline animation effect */
.bottombar-about-us-section a::after {
    content: ""; /* Empty content for the pseudo-element */
    position: absolute;
    left: 0;
    bottom: -5px; /* Places the underline slightly below the text */
    width: 0; /* Starts with no width */
    height: 2px; /* Thickness of the underline */
    background-color: #ff69b4; /* Pink underline */
    transition: width 0.3s ease; /* Smooth width expansion */
}

/* Expand underline on hover */
.bottombar-about-us-section a:hover::after {
    width: 100%; /* Expands the underline fully */
}


/* Intensify gradient on hover */
.bottombar-about-us-section a:hover::before {
    opacity: 0.1; /* Makes the gradient brighter */
}





/* Read More for About Us section */ 
.more-about-us { 
    position: relative; 
    top: 10px; /* spacing */
    font-size: 1.5em; 
}






/* Contact Us part */ 

.bottom-bar h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Dejavu sans', sans-serif;
    color: #ff69b4;
}

.bottom-bar p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
    color: #ffffff; 
}

.contact-icons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.contact-icons .icon {
    font-size: 40px;
    color: white;
    transition: transform 0.3s, color 0.3s;
}

.contact-icons .icon:hover {
    transform: scale(1.1);
    color: #ff69b4;
}

