/* General Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
body {
    scroll-behavior: smooth;
    background-color: #ffffff;
    color: #333;
}

/* Navbar */
nav {
    position: fixed;
    width: 100%;
    background-color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}
nav .logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #00bfa6;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin-left: 2rem;
}
nav ul li a {
    color: #00bfa6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #008f7a;
}
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #00bfa6;
}

/* Sections */
section {
    padding: 80px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Home Section */
#home {
    min-height: 100vh;
    padding: 100px 20px;
    background: #e8f7f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#home h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00bfa6;
}
#home p {
    font-size: 1.2rem;
    max-width: 650px;
    line-height: 1.6;
}
.launch-banner {
    background-color: #00bfa6;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* About Section */
#about h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #00bfa6;
}
#about .content {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    background-color: #f9fdfd;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Team Section */
#team h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #00bfa6;
}
#team .team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 40px;
}
.member {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.member img {
    border-radius: 50%;
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin-bottom: 1rem;
}
.member h3 {
    margin-bottom: 0.5rem;
    color: #00bfa6;
}

/* Contact Section */
#contact {
    padding-top: 80px;
    padding-bottom: 40px;
}
#contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #00bfa6;
}
#contact .details {
    max-width: 600px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}
#contact a {
    color: #00bfa6;
    text-decoration: none;
}
#contact a:hover {
    color: #008f7a;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #00bfa6;
    color: white;
}

/* Fade-in animation */
section.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bottom-right popup */
#launch-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background-color: #00bfa6;
    color: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: none;
    z-index: 2000;
    animation: slideIn 0.5s ease forwards;
}
#launch-popup .popup-content p {
    margin-bottom: 10px;
    font-weight: bold;
}
#launch-popup input[type="email"] {
    width: 60%;
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
    margin-right: 5px;
    font-size: 0.9rem;
}
#launch-popup button[type="submit"] {
    padding: 6px 10px;
    border: none;
    background-color: white;
    color: #00bfa6;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}
#launch-popup button[type="submit"]:hover {
    background-color: #f0f0f0;
}
.close-popup {
    background: none;
    border: none;
    color: white;
    float: right;
    font-size: 1rem;
    cursor: pointer;
}
.close-popup:hover {
    color: #333;
}
@keyframes slideIn {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        left: -100%;
        width: 100%;
        transition: left 0.3s;
    }
    nav ul.show {
        left: 0;
    }
    nav ul li {
        margin: 1.5rem 0;
        text-align: center;
    }
    .menu-toggle {
        display: block;
    }
}
