@import url('https://fonts.cdnfonts.com/css/dark-seed');
@import url('https://fonts.cdnfonts.com/css/akira-expanded');

body {
    position: relative;
    background-color: black;
    background-size: 200% 200%;
    color: #ffffff; /* White text for contrast */
}
/* Hamburger Menu Button */
.hamburger-menu {
    display: none; /* Hide by default */
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Nav Links Container */
.nav-links-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Navbar Container */
.nav {
    font-family: 'Akira Expanded', sans-serif;
    
    display: flex;
    justify-content: center; /* Center the navbar horizontally */
    align-items: center;
    padding: 1rem 2rem;
 
    position: absolute; /* Position absolutely */
    top: 0; /* Set to top of viewport */
    left: 0; /* Set to left of viewport */
    right: 0; /* Set to right of viewport */
    z-index: 1000; /* Ensure it is on top of other elements */
}

/* Nav Links Container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem; /* Space between links */
    list-style: none;
}

/* Nav Links */
.nav-links a {
    text-decoration: none;
    color: #ffffff; /* Change to your preferred color */
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
    transition: transform 0.3s ease, color 0.3s ease;
    transform: scale(1.1);
}

/* Nav Logo */
.nav-logo img {
    width: 105px; /* Adjust the width as needed */
    height: 105px; /* Maintain aspect ratio */
    margin: 0 2rem; /* Space around the logo */
}
.nav-logo img:hover {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    transition: transform 0.3s ease, color 0.3s ease;
    transform: scale(1.1);
}

#user-email {
    color: #feffff;
    cursor: pointer;
}
#user-email:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
    transition: transform 0.3s ease, color 0.3s ease;
    transform: scale(1.1);
}

/* Specific Link Styling (Optional) */
#apps-link,
#safety-link,
#contact-link,
#login-link {
    padding: 0.5rem 1rem; /* Add padding for better clickability */
}
/* Main Content */
main {
    color: #ffffff; /* White text for all content inside main */
    overflow: auto; /* Prevent scrolling */
    
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(26, 188, 156, 0.5);
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(52, 152, 219, 0.5);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Hero Left Section */
.hero-left {
    font-family: "Akira Expanded", sans-serif;
    text-align: center;
   
    color: #ffffff; /* White text */
    height: 100%; /* Ensure it takes up the full height of the slide */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the content */
    align-items: center; /* Horizontally center the content */
    width: 100%; /* Ensure it takes up the full width of the slide */
}
.hero-text {
    border: none;
    border-radius: 7px;
    padding: 12rem 1rem;
  
    
}
.user-profile-pic :hover{
    transform: scale(1.1);
  }

.hero-left h1, 
.hero-left p, 
.hero-left .hero-text {
    animation: modernFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0; /* Start with text invisible */
}
.hero-left h1 {
    animation-delay: 0.2s; /* Shorter delay */
}

.hero-left p {
    animation-delay: 0.4s; /* Shorter delay */
}

.hero-left .hero-text {
    animation-delay: 0.6s; /* Shorter delay */
}
@keyframes modernFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.98); /* Smaller initial offset */
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block; /* Show on smaller screens */
    }

    .nav-links-container {
        display: none; /* Hide nav links by default on smaller screens */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on your navbar height */
        left: 0;
        background-color: #000000;
        width: 100%;
        padding: 1rem;
        z-index: 1000;
    }

    .nav-links-container.active {
        display: flex; /* Show when active */
    }

    .nav-logo img {
        width: 80px; /* Adjust logo size for smaller screens */
        height: 80px;
    }

    .hero-text {
        padding: 8rem 1rem; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: 8rem 1rem; /* Adjust padding for smaller screens */
    }
    .hero-title{
        font-size: 1rem;
    }
    .hero-subtitle{
        font-size: 0.7rem;
    }
}