@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    color: white;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
    scroll-behavior: smooth;
    height: 100vh;  /* Ensure body height */
}

/* Parallax Background */
#parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Fullscreen Canvas for Particles & Gradient */
#animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Scroll Snapping - Improved for Mobile */
.sections-wrapper {
    scroll-snap-type: y mandatory;
    overflow-y: auto;  /* Prevent scroll issues on mobile */
    height: 100vh;
}

/* Each Section Snaps Properly */
section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content {
    position: relative;
    z-index: 1;
    margin: 0 auto;  /* Center content */
    max-width: 80%;   /* Prevent text overflow */
}

.logo {
    width: 70%;
    max-width: 450px;
    animation: glow 1.5s infinite alternate;
}

.section-title {
    font-size: 1.8em;
    margin-top: 20px;
    color: #00aaff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.purpose {
    font-size: 1.3rem;
    max-width: 700px;
    opacity: 0.9;
    margin-top: 10px;
}

/* Info Section */
.info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-content {
    padding: 40px;
    border-radius: 15px;
    max-width: 50%;
    font-size: 1.3em;
}

.contact-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: #00aaff;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0px 0px 15px rgba(0, 170, 255, 0.7);
}

.contact-button:hover {
    background: #0088cc;
    box-shadow: 0px 0px 25px rgba(0, 170, 255, 1);
}

/* More Information Section - Adjustments for Centering */
.more-info {
    background: rgba(0, 0, 0, 0.5);
    flex-direction: column;
    padding: 20px;   /* Adjust padding to fit properly */
    display: flex;
    justify-content: center;   /* Centering text vertically */
    align-items: center;
    height: 100vh;   /* Ensure it fits the screen */
}

.small-text {
    font-size: 1.5em;
    opacity: 0.8;
}

.big-text {
    font-size: 4em;
    letter-spacing: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Glow Animation */
@keyframes glow {
    from {
        filter: drop-shadow(0px 0px 5px #00aaff);
    }
    to {
        filter: drop-shadow(0px 0px 15px #00aaff);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo {
        width: 85%;
        max-width: 300px;
    }

    .info-content {
        max-width: 80%;
    }

    .big-text {
        font-size: 1.3em;
        letter-spacing: 10px;
    }

    .sections-wrapper {
        height: 100vh;   /* Ensure full height scrolling on mobile */
        overflow-y: scroll;
    }

    .content, .more-info {
        padding: 10px;   /* Avoid text getting cut off */
    }
}
