@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #040D12;
    --secondary-color: #183D3D;
    --tertiary-color: rgb(92, 131, 116);
    --accent-color: #93B1A6;
    --white-color: #FFFFFF;
    --action-color: #00C49A;
    --font-inter: 'Inter', sans-serif;
    --font-exo2: 'Exo 2', sans-serif;
    --font-merriweather: 'Merriweather Sans', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-raleway: 'Raleway', sans-serif;
    --font-nunito: 'Nunito', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-hansans: "Black Han Sans", sans-serif;
    --total-lines: 5;
    --left-offset: 1.75rem;
    --clip-height: 2rem;
    --line-height: 1.85rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

body {
    font-family: var(--font-inter);
    background-color: var(--primary-color);
    color: var(--white-color);
    line-height: 1.6;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

body::selection {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background-color: #bde4c1;
}

.hero-title-a {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-hansans);
    font-size: 7.5vw;
    font-weight: 400;
    letter-spacing: 0.5vw;
}

.btn-login {
    border: 0.2rem solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.4s ease, color 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.btn-login:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-solid {
    border: 0.2rem solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.btn-solid:hover {
    color: var(--primary-color);
}

/***Main************************************************************************************************/

.lifey-intro {
    height: 100vh;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.aboutus-title {
    color: var(--accent-color);
    font-family: var(--font-exo2);
    letter-spacing: 0.2rem;
}

.scrollable-content {
    padding: 0 !important;
    overflow-x: hidden;
}

/***Content***********************************************************************************************/
.p1-aboutus {
    display: flex;
    justify-content: center;
    align-content: center;
}

.about-us {
    display: flex;
    align-items: center;
    padding: 0 5rem;
    font-family: var(--font-roboto), sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 10vh;
}

/***Footer************************************************************************************************/

.footer {
    background: transparent;
    border-top: 1px solid rgba(147, 177, 166, 0.2);
    padding: 2rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(24, 61, 61, 0.3) 0%, black 50%),
    radial-gradient(circle at 80% 20%, rgba(24, 61, 29, 0.3) 0%, black 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-exo2);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-family: var(--font-poppins);
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(147, 177, 166, 0.1);
    border: 1px solid rgba(147, 177, 166, 0.2);
    border-radius: 50%;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(147, 177, 166, 0.3);
}

.footer-column h4 {
    font-family: var(--font-merriweather);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-family: var(--font-poppins);
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-input {
    padding: 12px 16px;
    background: rgba(24, 61, 61, 0.3);
    border: 1px solid rgba(147, 177, 166, 0.3);
    border-radius: 8px;
    color: var(--white-color);
    font-family: var(--font-poppins);
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(147, 177, 166, 0.2);
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-btn {
    cursor: pointer;
    font-size: 1rem;
    aspect-ratio: 1/0.25;
    color: var(--white-color);
    background: var(--secondary-color);
    background-size: cover;
    background-blend-mode: overlay;
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    font-family: var(--font-merriweather);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    user-select: none;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    height: 3rem;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 1em 0.45em rgba(0, 0, 0, 0.1);
    background: radial-gradient(circle at bottom, #151515 15%, var(--secondary-color) 70%);
    outline: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(147, 177, 166, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-family: var(--font-poppins);
    color: #888;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    font-family: var(--font-poppins);
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

@media (max-width: 450px) {
    .hero-title-a {
        font-size: 15vw;
        padding-bottom: 3vh;
    }

    .aboutus-title {
        font-size: 12.5vw !important;
    }

    .about-us {
        padding: 0 3vw;
        font-size: 6vw;
        margin-bottom: 15vh;
        text-align: justify-all;
        text-justify: inter-ideograph;
    }
}

@media (max-width: 850px) and (min-width: 451px) {
    .lifey-title {
        font-size: 12.5vw;
    }

    .lifey-intro {
        padding: 1.5vh 2vw;
    }

    .about-us {
        padding: 0 3vw;
        font-size: 4.5vw;
        margin-bottom: 15vh;
        text-align: justify-all;
        text-justify: inter-ideograph;
    }

    .hero-title-a {
        font-size: 15vw;
        padding-bottom: 3vh;
    }

    .aboutus-title {
        font-size: 12.5vw !important;
    }
}

@media (max-width: 1024px) and (min-width: 851px) and (orientation: portrait)  {
    .lifey-title {
        font-size: 12.5vw;
    }

    .lifey-intro {
        padding: 1.5vh 2vw;
    }

    .about-us {
        padding: 0 3vw;
        font-size: 4.5vw;
        margin-bottom: 15vh;
        text-align: justify-all;
        text-justify: inter-ideograph;
    }

    .hero-title-a {
        font-size: 13.5vw;
        padding-bottom: 3vh;
    }

    .aboutus-title {
        font-size: 12.5vw !important;
    }
}
