/* fullPage.js Customizations */

/* Reset fullPage.js default styles */
#fullpage {
    position: relative;
}

/* Hide fullPage.js navigation dots */
#fp-nav {
    display: none !important;
}

/* Custom navigation dot styles */
#fp-nav ul li a span {
    background: rgba(255, 255, 255, 0.4);
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#fp-nav ul li:hover a span {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

#fp-nav ul li a.active span {
    background: #526EF9;
    border-color: #526EF9;
    width: 16px;
    height: 16px;
    margin: -10px 0 0 -10px;
}

#fp-nav ul li:hover a.active span {
    background: #526EF9;
    border-color: #526EF9;
    transform: scale(1.1);
}

/* fullPage.js tooltip styles */
#fp-nav ul li .fp-tooltip {
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive design - styles when fullPage.js is disabled */
.fp-responsive #fullpage {
    height: auto !important;
}

.fp-responsive .section {
    position: relative !important;
    transform: none !important;
    height: auto !important;
    min-height: 100vh;
}

/* fullPage.js scroll support */
.fp-scrollable {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

.fp-scrollable .fp-scroller {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Ensure section scrolls correctly in responsive mode */
.fp-auto-height-responsive {
    height: auto !important;
    min-height: 100vh;
}

.fp-overflow {
    overflow: initial;
}

/* Custom Scrollbar for fullPage.js Overflow Sections */
.fp-overflow {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) rgba(0, 0, 0, 0.2);
}

.fp-overflow::-webkit-scrollbar {
    width: 8px;
}

.fp-overflow::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.fp-overflow::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.fp-overflow::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.fp-responsive .section {
    padding: 0;
}

.fp-scrollable {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden !important;
}

.fp-scrollable .fp-scroller {
    -webkit-transform: translateZ(0);
}

#fullpage {
    position: relative;
}

.section {
    position: relative;
    z-index: 1;
}

.fp-section.active {
    z-index: 2;
}

#fp-nav {
    position: fixed;
    z-index: 100;
} 