/* Import Poppins font weights */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 300;
    background: url('Assets/BG.jpg') center center/cover no-repeat fixed;
    color: #94AEAA;
    min-height: 100vh;
    overflow-x: hidden;
    /* Add for scaling */
}

.site-wrapper {
    width: 1920px;
    height: 100vh;
    max-width: 100vw;
    margin: 0 auto;
    position: relative;
    transform-origin: top left;
}

@media (max-width: 1920px) {
    .site-wrapper {
        transform: scale(calc(100vw / 1920));
        width: 1920px;
        height: 100vh;
        max-width: 100vw;
    }
    body {
        overflow-x: auto;
    }
}

/* Header */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background: transparent;
}
.logo {
    height: 64px;
    margin-top: 24px;
}

/* Horizontal Scroll Container */
.horizontal-scroll {
    display: flex;
    flex-direction: row;
    width: 400vw;
    height: 100vh;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.screen {
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    position: relative;
}

/* Hero Section */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 60px;
    gap: 12px;
}
.sphere-gif {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 0;
    mix-blend-mode: screen;
    display: block;
}
.email-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}
.email-label {
    color: #94AEAA;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 2px;
    text-align: center;
    letter-spacing: 0.01em;
}
.email-input {
    width: 480px;
    height: 72px;
    padding: 0 24px;
    border: none;
    border-radius: 20px;
    background: #092420;
    color: #94AEAA;
    font-size: 1rem;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 300;
    outline: none;
    margin-bottom: 0;
    box-sizing: border-box;
    text-align: left;
}
.email-input::placeholder {
    color: #bfcfcf;
    opacity: 1;
    font-size: 0.98rem;
}
.submit-btn {
    width: 308px;
    height: 54px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: #94AEAA;
    color: #092420;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(9,36,32,0.08);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.submit-btn:hover {
    background: #b2c7c3;
}

.hidden {
    display: none;
}

/* Optional: Add some styling for the thank you message container */
#thank-you-message {
    padding: 20px;
    border-radius: 10px;
	color: #94AEAA;
    /* Add background, border, etc. if you want a box around it */
    /* background-color: rgba(255, 255, 255, 0.1); */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

/* About Section */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.about-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 300;
    font-size: 1.18rem;
    color: #94AEAA;
    line-height: 1.7;
    margin-bottom: 0;
}
.learn-more-btn {
    padding: 12px 36px;
    border: none;
    border-radius: 8px;
    background: #94AEAA;
    color: #092420;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.08rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 12px;
}
.learn-more-btn:hover {
    background: #b2c7c3;
}

/* Team Section */
.team-content, .team-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 40px auto;
    width: 100%;
    min-height: 40vh;
}
.team-member {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    width: 100vw;
    justify-content: center;
}
.team-photo {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 4px solid #94AEAA; */
    background: #092420;
    box-shadow: 0 2px 12px rgba(9,36,32,0.12);
}
.team-heading-top {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 2px;
    font-size: 13px;
    color: #94AEAA;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.team-member-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.team-name {
    font-size: 12px;
    color: #94AEAA;
    font-weight: 600;
    margin-bottom: 7px;
    margin-top: 7px;
}
.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a3c3a;
    display: inline-block;
    cursor: pointer;
    margin: 0 3px;
    transition: background 0.2s;
}
.slide-dot.active {
    background: #94AEAA;
}
.detail-box {
    min-width: 320px;
    max-width: 400px;
    width: 300px;
    min-height: 120px;
    background: #092420;
    border-radius: 18px;
    color: #94AEAA;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 16px rgba(9,36,32,0.18);
    justify-content: flex-start;
    padding: 18px 14px 28px 14px;
}
.detail-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.6;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    padding: 0 6px;
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    transform: translateY(10px);
    text-align: center;
}
.detail-text.active {
    opacity: 1;
    position: absolute;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
}
.slide-controls {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}
.slide-btn {
    background: none;
    border: none;
    color: #94AEAA;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 50%;
    transition: background 0.2s;
}
.slide-btn:focus, .slide-btn:hover {
    background: #1a3a36;
    outline: none;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-content {
        max-width: 95vw;
        font-size: 1rem;
    }
    .team-content, .team-member {
        flex-direction: column;
        gap: 24px;
        height: auto;
    }
    .detail-box {
        min-width: 220px;
        max-width: 95vw;
        padding: 24px 12px 18px 12px;
    }
    .team-photo {
        width: 90px;
        height: 90px;
    }
}
@media (max-width: 600px) {
    .header {
        height: 56px;
    }
    .logo {
        height: 22px;
        margin-top: 12px;
    }
    .hero-content {
        max-width: 95vw;
        padding-top: 32px;
    }
    .sphere-gif {
        width: 110px;
        height: 110px;
        margin-bottom: 18px;
    }
    .email-input {
        max-width: 95vw;
        padding: 10px 10px;
        font-size: 0.98rem;
    }
    .submit-btn, .learn-more-btn {
        width: 100%;
        font-size: 1rem;
        padding: 10px 0;
    }
    .about-content {
        gap: 18px;
    }
    .detail-box {
        min-width: 90vw;
        max-width: 98vw;
        padding: 16px 6px 12px 6px;
    }
    .slide-controls {
        margin-top: 12px;
    }
}

/* Hide scrollbars for horizontal scroll */
.horizontal-scroll {
    scrollbar-width: none; /* Firefox */
}
.horizontal-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    z-index: 20;
    font-family: 'Poppins', Arial, sans-serif;
}
.nav-link {
    color: #94AEAA;
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.01em;
    padding: 0 3px;
    transition: color 0.2s, font-weight 0.2s;
}
.nav-link.active {
    color: #fff;
    font-weight: 600;
    /* No underline or border */
}
.nav-link:hover {
    color: #fff;
}
@media (max-width: 600px) {
    .bottom-nav {
        bottom: 12px;
        gap: 12px;
    }
    .nav-link {
        font-size: 0.89rem;
        padding: 0 2px;
    }
}

.screen.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    min-height: 100vh;
    position: relative;
}

.team-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
} 