

/* Reset */
* {
    margin: 0;
    /* padding: 0; */
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* Site Header - Floating Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgb(0 0 0 / 59%);
    /* backdrop-filter: blur(10px); */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.header-logo {
        display: flex
;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;

}

.header-logo a {
    display: block;
}



.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: #ffffff;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: #FFF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FFF;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

/* Smooth color transition for active state */
.nav-menu a {
    transition: color 0.3s ease;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #FFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}


/* Fullpage Sections */
.section {
    position: relative;
    height: 100vh;
    width: 100%;
}

.section-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 50px;
    background: #000000a1;
    overflow: hidden;
}

.section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #333;
}

.section .content {
    font-size: 22px;
    line-height: 1.8;
    color: #FFF;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.section .content a{ 
    color: #FFF;
}
.section.loaded .content {
    opacity: 1;
    transform: translateX(0);
}
.preloader {
    transition: opacity 0.8s ease-out;
}
/* Mobile Menu Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    .container{
        padding-left: 10px;
        padding-right: 10px;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 20px;
        padding: 15px 20px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    .section-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 80px;
    background: #000000a1;
    overflow: hidden;
}

    .section h1 {
        font-size: 32px;
    }
    
    .section .content {
        font-size: 16px;
    }
}
