/* import font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.section {
    height: 100vh;
    scroll-snap-align: start;
}

.topbar {
    position: fixed;
    top: 0;
	left: 0;
    z-index: 9999;
	color: white;
    display: flex;
    align-items: center;
	right: 0;
    height: 80px;
    padding: 0 5%;
    background: transparent;
	justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

.topbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #ddd;
}

.logotopbar {
    height: 50px;
	filter: brightness(0) invert(1);
}
.logotopbar.scrolled{
	filter: none;
}

.right-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu {
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
	font-size:0.85rem;
	
}
.menu.scrolled a{
	color: #666;
}

.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #00bfff;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}
.menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 180px;
    padding: 10px 0;

    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
	font-size: 0.85rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.3s;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #555;
}

.dropdown-content a:hover {
    background: #00bfff;
    color: white;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}
.hamburger.scrolled{
	color: #000;
}

.sidebar {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #ddd;
    transition: 0.4s ease;
    z-index: 999;
}

.sidebar.active {
    top: 80px;
}

.sidebar a,
.dropdown-toggle {
    display: block;
    padding: 15px 25px;
    font-weight: bold;
    color: #666;
    text-decoration: none;
    cursor: pointer;
}

.sidebar a:hover,
.dropdown-toggle:hover {
    background: #f5f5f5;
}

.dropdown-mobile-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
}

.dropdown-mobile-content a {
    padding: 12px 35px;
    display: block;
    color: #555;
}

.dropdown-mobile-content a:hover {
    background: #00bfff;
    color: white;
}

.dropdown-mobile.active .dropdown-mobile-content {
    max-height: 300px;
}

@media (max-width: 1000px) {
    .menu {
        display: none;
    }
    .hamburger {
		display: block;
    }
}