@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&family=Cabin:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Rubik:ital,wght@0,300..900;1,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*{
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Header */

header{
    height: 100px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.349);
    position: fixed;
    background-color: white;
    z-index: 999;
}

.logo{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    z-index: 3;
}

.logo a {
    text-decoration: none;
    color: black;
    transition: transform 200ms ease;
    display: inline-block;
    padding-left: 15px;
}

.logo img {
    width: 45px;
    height: auto;
    transition: transform 200ms ease;
}

.social{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    height: 100%;
    width: 10%;
}

.social a{
    text-decoration: none;
    color: black;
    padding-right: 20px;
}

.social i{
    font-size: 27px;
    transition: all 200ms ease;
}

.social i:hover{
    color: rgb(100, 180, 212);
}

.center-links{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    gap: 40px;
}

.center-links a{
    text-decoration: none;
    color: black;
    transition: color 300ms ease 50ms;
}

.center-links a:hover{
    color: rgb(100, 180, 212);
}

/* Dropdown Authors */

.authors-dropdown {
    position: relative;
    display: inline-block;
}

.drop-authors-button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: black;
    transition: color 300ms ease 50ms;
}

.drop-authors-button:hover {
    color: rgb(100, 180, 212);
}

.authors-dropdown-menu {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    border-radius: 6px;
    z-index: 99;
    flex-direction: column;
    padding: 10px 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.authors-dropdown-menu a {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: black;
    font-size: 15px;
    transition: background 0.3s, color 0.3s;
}

.authors-dropdown-menu a:hover {
    background-color: rgb(100, 180, 212);
    color: white;
}

.authors-dropdown:hover .authors-dropdown-menu,
.authors-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.authors-dropdown:hover .authors-dropdown-menu {
    display: block;
}

/* Dropdown Translators */

.translators-dropdown {
    position: relative;
    display: inline-block;
}

.drop-translators-button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: black;
    transition: color 300ms ease 50ms;
}

.drop-translators-button:hover {
    color: rgb(100, 180, 212);
}

.translators-dropdown-menu {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    border-radius: 6px;
    z-index: 99;
    flex-direction: column;
    padding: 10px 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.translators-dropdown-menu a {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: black;
    font-size: 15px;
    transition: background 0.3s, color 0.3s;
}

.translators-dropdown-menu a:hover {
    background-color: rgb(100, 180, 212);
    color: white;
}

.translators-dropdown:hover .translators-dropdown-menu,
.translators-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.translators-dropdown:hover .translators-dropdown-menu {
    display: block;
}

/* Top Content */

.top-content{
    padding-top: 150px;
    text-align: center;
}

.title p {
    font-size: 60px;
    font-weight: 200;
    padding-bottom: 10px;
}

.description p{
    font-size: 20px;
    letter-spacing: 2px;
    padding-bottom: 50px;
}

.launch-date p{
    font-size: 25px;
}

.launch-date p::after{
    content: 'March 2026';
    border-bottom: 2px solid rgb(100, 180, 212);
    color: rgb(100, 180, 212);
    font-weight: bold;
}

/* Welcome Content */

.welcome-content{
    margin-top: 50px;
    background-color: rgb(100, 180, 212);
    text-align: center;
}

.welcome-title{
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 1.5px;
    padding-top: 40px;
}

.welcome-container{
    display: flex;
    z-index: 2;
    overflow: hidden;
    position: relative;
}

.welcome-text{
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 70px;
    padding-bottom: 70px;
    color: rgb(41, 41, 41);
    z-index: 2;
    flex: 60%;
}

#w-t1, #w-t2 {
    transition: opacity 350ms ease;
    opacity: 1;
}

.welcome-img{
    z-index: 1;
    flex: 40%;
    padding-top: 50px;
}

.welcome-img img{
    border-radius: 10px;
    box-shadow: 0 0 20px black;
    width: 350px;
    height: auto;
    transition: transform 0.1s ease-out;
    will-change: transform;
    z-index: 1;
    filter: blur(0.5px);
}

/* Resonant Voices Content */

.voices-content{
    background-color: white;
    padding-top: 150px;
    text-align: center;
}

.voices-title p{
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 70px;
}

.voices-text{
    padding-left: 300px;
    padding-right: 300px;
    padding-bottom: 150px;
}

/* Our Authors & Our Translators Bottom Content */

.bottom-content{
    background-color: rgb(30, 30, 30);
    color: white;
    text-align: center;
}

.bottom-authors-title{
    padding-top: 150px;
}

.bottom-authors-title p{
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 70px;
}

.bottom-authors-text{
    padding-left: 300px;
    padding-right: 300px;
    padding-bottom: 120px;
}

.bottom-translators-title p{
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 70px;
}

.bottom-translators-text{
    padding-left: 300px;
    padding-right: 300px;
    padding-bottom: 150px;
}

/* Stay Connected */

.stay-connected{
    padding-top: 150px;
    text-align: center;
    background-color: white;
}

.connected-title p{
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 70px
}

.connected-text{
    padding-left: 300px;
    padding-right: 300px;
    padding-bottom: 70px;
}

/* === LOGIN CAMP (email) === */
.login-camp{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-bottom: 120px;
}

/* Input */
.login-camp input{
    flex: 1 1 350px;
    max-width: 500px;
    height: 50px;
    border-radius: 8px;
    padding: 16px 18px;
    outline: none;
    border: 2px solid #ccc;
    font-size: 18px;
    font-weight: 500;
    padding: 0 14px;
    transition: all 0.3s ease;
}

.login-camp input:focus{
    border-color: rgb(100, 180, 212);
    box-shadow: 0 0 6px rgba(100, 180, 212, 0.6);
}

/* Button */
.login-camp button{
    height: 50px;
    padding: 0 20px;
    border-radius: 8px;
    border: none;
    background-color: rgb(100, 180, 212);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.login-camp button:hover{
    background-color: rgb(85, 152, 179);
    transform: translateY(-2px);
}

/* Messages */
.login-camp p{
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-top: 10px;
}

.login-camp p.show{
    opacity: 1;
}

/* Footer */

footer {
    padding: 20px 40px;
    color: rgba(77, 77, 77, 0.9);
}

.footer-container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    padding-bottom: 50px;
    border-top: 1px solid #ddd;
}

.footer-container1 p {
    margin: 0;
    font-size: 14px;
    text-align: center;
}

.footer-container2{
    text-align: center;
    padding-bottom: 50px;
}

.footer-links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
    padding-bottom: 40px;
}

.footer-links a{
    text-decoration: none;
    color: black;
    transition: color 300ms ease 50ms;
}

.footer-links a:hover{
    color:  rgb(100, 180, 212);
}

.footer-container2 p{
    color: rgba(77, 77, 77, 0.5);
}

/* Small Devices Links */

.display-barrier{
    padding-top: 90px;
    display: none;
}

.small-devices-links{
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    width: auto;
    background-color: rgb(100, 180, 212);
    gap: 40px;
    display: none;
}

.small-devices-links a, .small-devices-links button{
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    color: black;
    transition: color 300ms ease 50ms;
}

.small-devices-links a:hover, .small-devices-links button:hover{
    color: white;
}

.small-devices-bottom-social{
    display: none;
}

/* Responsive */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 10px 15px;
        align-items: center;
    }

    .display-barrier{
        display: flex;
    }

    .logo{
        width: 100%;
    }

    .small-devices-bottom-social{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
    }

    .small-devices-bottom-social a{
        color: black;
        transition: color 300ms ease 50ms;
    }

    .small-devices-bottom-social a:hover{
        color: rgb(100, 180, 212);
    }

    .logo {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }

    .small-devices-links {
        display: flex;
    }

    .top-content{
        padding-top: 80px;
    }

    .center-links {
        position: static;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        align-items: center;
        display: none;
    }

    .social {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
        display: none;
    }

    .welcome-img {
        display: none;
    }

    .welcome-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .launch-date{
        text-align: center;
        padding-left: 60px;
        padding-right: 60px;
    }

    .voices-text,
    .bottom-authors-text,
    .bottom-translators-text,
    .connected-text {
        padding-left: 20px;
        padding-right: 20px;
    }

    .small-devices-links .authors-dropdown {
        position: relative;
    }

    .small-devices-links .authors-dropdown-menu {
        position: absolute;
        top: 120%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        width: max-content;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .top-content{
        padding-top: 60px;
    }

    .logo{
        width: 100%;
    }

    .small-devices-links {
        display: flex;
    }

    .welcome-title {
        font-size: 28px;
    }

    .social{
        display: none;
    }

    .center-links a {
        font-size: 16px;
        display: none;
    }

    .login-camp{
        flex-direction: column;
    }

    .login-camp input,
    .login-camp button {
        flex: none;
        width: 80%;
        max-width: none;
        height: 50px;
        padding: 0 10px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .login-camp button {
        width: 50%;
        height: 32px;
    }
}