:root {
    /* Takemi Theme */
    font-size: 62.5%;
    --main-color: #1b4fba;
    --secondary-color: #0b3592;
    --tritary-color: #081a45;
    --quad-color: #2d0845;
    --text-color: #ffffff;
    --text-color-3: #c2c2c2;
    --text-color-alt: #000;
}

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

body,
h1,
h2,
h3,
p,
nav ul li a {
    font-family: Arial, Helvetica, sans-serif;
    /* Your preferred font stack */
}

html {
    scroll-behavior: smooth;

}

/* 
NAV
 */

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--quad-color);
    position: fixed;
    width: 100%;
    padding: 2rem;
    margin-top: 5.2rem;
    box-shadow: 1px 1px 2px rgb(10, 10, 10);
    z-index: 1000;
}

#takemi-logo {
    width: 100%;
}

section {
    min-height: 50vh;
    padding: 10rem 12% 10rem;
}

.nav-content i {
    font-size: 3rem;
    padding: .6rem;
    border-radius: 50%;
    box-shadow: 1px 1px 4px rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    margin-top: 2rem;
}

.nav-content ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0;
}

.nav-content li {
    margin: 0 1rem;
    transition: ease-in-out 0.3s;
}

.nav-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.5rem;
}

#navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-content li:hover {
    color: var(--main-color);
    transform: scale(1.2);
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 70px;
    right: 0;
    background-color: var(--quad-color);
    /* Use your theme color */
    width: 100%;
    text-align: right;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li a {
    display: block;
    padding: 1rem;
    color: var(--text-color);
    /* Use your theme colors */
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #444;
    /* Optional: for a divider between items */
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    #navbar ul {
        display: none;
        /* Hide the default navbar */
    }

    .hamburger {
        display: block;
        /* Show the hamburger icon */
    }

    .mobile-menu.show {
        display: block;
        /* Show the mobile menu when the class is added */
    }
}


/* HERO */

.hero {
    background-color: var(--main-color);
    padding: 6rem 4rem;
    justify-content: center;
    display: flex;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;

}

/* .hero-content img {
    width: 50%;
    align-items: center;
    justify-content: center;

} */

.hero h1 {
    font-size: 4rem;
    display: flex;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    color: var(--text-color);
    padding: 0 2rem;
}

.hero p {
    justify-content: center;
    width: 50%;
    margin: 0 auto;
    font-size: 1.8rem;
    text-align: center;
    line-height: 2.5rem;
    color: var(--text-color);
}

.hero-button {
    padding: 1.2rem;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-radius: 1rem;
    text-decoration: none;
    cursor: pointer;
    border-style: none;
    font-size: 1.6rem;
}

.hero-button-alt {
    padding: 1.2rem;
    background-color: var(--text-color-alt);
    color: var(--text-color);
    border-radius: 1rem;
    text-decoration: none;
    cursor: pointer;
    border-style: none;
    font-size: 1.6rem;
}

.hero-button:hover,
.hero-button:focus {
    background-color: var(--tritary-color);
}

.hero-button a {
    text-decoration: none;
    color: var(--text-color);
}

.hero-image {
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    max-width: 180rem;
    min-width: 50rem;
    flex-direction: column;
    gap: 6rem;
}

.hero-image img {
    max-width: 85%;
    height: auto;
    color: transparent;
}

#takemi-logo {
    max-width: 55%;
    height: auto;
    color: transparent;
}

@media screen and (max-width: 768px) {
    .hero-image img {
        max-width: 100%;
    }

    #takemi-logo {
        max-width: 75%;
        margin-top: 3rem;
    }
}

.stats-image {
    display: flex;
    padding: 30px;
    justify-content: center;
    align-items: center;
    max-width: 200rem;
    min-width: 55rem;
    flex-direction: row;

}

.stats-image img {
    max-width: 200px;
    height: auto;

}

@media screen and (max-width: 960px) {
    .stats-image {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: left;
    }

    .mementos-stats h2 {
        font-size: 2rem !important;
        text-align: center;
    }

}

.divider-1 {
    height: 100%;
    width: 100%;
    z-index: -1;
}

.divider-2 {
    height: 100%;
    width: 100%;
    z-index: -1;
    padding-top: 10rem;
    margin-bottom: -3px;
}

.divider-3 {
    height: 100%;
    width: 100%;
    z-index: 1;
}


.testimony-logos {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 5rem;
    font-size: 5rem;
    align-items: center;
    justify-items: center;
    width: 75%;
    margin-top: 3rem;
    max-width: 100rem;
    transition: all 0.5sec ease-in-out;
}

@media screen and (max-width: 860px) {
    .testimony-logos {
        grid-template-columns: repeat(3, auto);
    }

}

.testimony-logos img {
    width: 100%;
    height: auto;
    fill: white;
}

.test-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    text-align: center;
    color: var(--text-color);
    min-width: 50%;
}

@media screen and (max-width: 860px) {
    .hero-content h2 {
        text-align: center;
        width: 65%;
    }

}

/* PLATFORM */
.mementos-platform {
    padding: 0 6rem;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.platform-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem;
    gap: 3rem;
}

.platform-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.platform-info h2 {
    font-size: 1.5rem;
}

.platform-info h1 {
    font-size: 3rem;
}

.platform-info p {
    font-size: 2rem;
    max-width: 50rem;
}

.platform-button:hover,
.platform-button:focus {
    background-color: var(--tritary-color);
}

.platform-img {
    width: 100%;
    height: auto;
    min-width: 30rem;
    max-width: 50rem;
}

.platform-button a {
    color: var(--text-color);
    text-decoration: none;
}

.platform-img img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .mementos-platform {
        flex-direction: column;
        padding: 3rem 1rem;
        /* Adjust padding as needed */
    }

    .platform-content {
        flex-direction: column;
        gap: 2rem;
        /* Adjust gap as needed */
    }

    .platform-info h1 {
        font-size: 2.5rem;
        /* Adjust font size as needed */
    }

    .platform-info h2 {
        font-size: 2rem;
        /* Adjust font size as needed */
    }

    .platform-info p {
        font-size: 1.8rem;
        /* Adjust font size as needed */
    }

    .platform-img {
        min-width: 75%;
        max-width: 75%;

    }
}

/* STATS */

.stats-section {
    padding: 0 6rem;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    margin: 3rem;
}

.mementos-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem;
    gap: 3rem;
}


.stats-section h2 {
    font-size: 3rem;
    margin: 2rem 0;
    text-align: center;
}

.stats-stack h2 {
    margin-top: 3rem;
    font-size: 1.7rem;
    align-items: start;
}

.stats-content {
    gap: 4rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 4rem;
}

.takemi-icons {

    border: 0.4rem solid var(--secondary-color);
    border-radius: 50%;
}

.stats-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-set {
    display: flex;
    gap: 2rem;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 2rem 3rem;
}

.stats-stack h1 {
    font-size: 10rem;
    margin-bottom: -4.2rem;
    letter-spacing: -0.6rem;
}

@media screen and (max-width: 768px) {
    .stats-section {
        padding: 3rem;
    }

    .stats-content {
        flex-direction: column;
        padding: 0;
        gap: 2rem;
        /* Adjust gap as needed */
    }

    .stats-set {
        flex-direction: column;
        padding: 2rem 1rem;
        /* Adjust padding as needed */
    }

    .stats-set h1 {
        font-size: 8rem;
        /* Adjust font size as needed */
        margin-bottom: -2rem;
        /* Adjust margin as needed */
        letter-spacing: -0.3rem;
        /* Adjust letter spacing as needed */
    }
}

/* CONSULTATION */

.takemi-consultation {
    text-align: center;
    flex-direction: column;
    display: flex;
    width: 100%;
    padding: 10px 200px;
}

.takemi-consultation h1 {
    display: flex;
    font-size: 3rem;

}

.consultation-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.consultation-heading {
    display: flex;
    justify-content: center;
}

.consultation-info {
    max-width: 1312px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.consultation-grid-1 {
    display: grid;
    grid-template-columns: minmax(0, 800px) minmax(0, 528px);
    gap: 3rem;
}

.consultation-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 528px) minmax(0, 800px);
    gap: 3rem;
}

.card-1 {
    background-color: var(--main-color);
    width: 100%;
    border-radius: 16px;
    padding: 48px;
    padding-bottom: 0;
}

.card-2 {
    background-color: var(--secondary-color);
    width: 100%;
    border-radius: 16px;
    padding: 48px;
    padding-bottom: 0;
}

.card-2 {
    background-color: var(--secondary-color);
    width: 100%;
    border-radius: 16px;
    padding: 48px;
    padding-bottom: 0;
}

.card-3 {
    background-color: var(--quad-color);
    width: 100%;
    border-radius: 16px;
    padding: 48px;
    padding-bottom: 0;
}

.card-1 h5 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: left;
}

.card-1 p {
    font-size: 1.7rem;
    text-align: left;
    color: var(--text-color);
    line-height: 2.5rem;
    padding-bottom: 2rem;
}

.card-2 h5 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.card-2 p {
    font-size: 1.7rem;
    text-align: center;
    color: var(--text-color-3);
    line-height: 2.5rem;
    padding-bottom: 2rem;
}

.card-3 h5 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.card-3 p {
    font-size: 1.7rem;
    text-align: center;
    color: var(--text-color-3);
    line-height: 2.5rem;
    padding-bottom: 2rem;
}

.card1-button {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.card2-button {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    padding-bottom: 2rem;
}

.card-1-img {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: flex-end;
}

.card-2-img {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: flex-end;
}

.card-1-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.card-container1 {
    /*     position: relative; */
}

.card-img-1 {
    width: 100%;
    height: auto;
}

.card-img-2 {
    width: 80%;
    height: auto;
}

@media (max-width: 1100px) {

    .consultation-grid-1,
    .consultation-grid-2 {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .card-1,
    .card-2,
    .card-3 {
        padding: 24px;

    }

    .card-1 h5,
    .card-2 h5,
    .card-3 h5 {
        font-size: 2rem;
        text-align: center;

    }

    .card-1 p,
    .card-2 p,
    .card-3 p {
        font-size: 1.5rem;
        line-height: 2rem;
        text-align: center;
    }

    .takemi-consultation {
        padding: 10px 120px;
    }

    .card-1-button {
        display: flex;
        justify-content: center;
        flex-direction: row;
    }
}



@media (max-width: 768px) {
    .takemi-consultation {
        padding: 10px 50px;
    }

    .card-1-button {
        display: flex;
        justify-content: center;
        flex-direction: row;
        padding-bottom: 20px;
    }
}

/* 

Global

*/

.global {
    background-color: var(--quad-color);
    padding: 5rem 4rem 5rem 4rem;
    display: flex;
    justify-content: center;
}

.global-bonus {
    background-color: var(--quad-color);
    padding: 5rem 4rem 5rem 4rem;
    display: flex;
    justify-content: center;
}

.global-content,
.bonus-content {
    gap: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.global-text {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 900px;
    color: var(--text-color);
}

.global-text h3 {
    font-size: 2rem;
    padding-bottom: 1rem;
}

.global-text h2 {
    font-size: 3rem;
    padding-bottom: 1rem;
}

.global-text p {
    font-size: 1.6rem;
    padding-bottom: 1rem;
}


.bonus-text {
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--text-color);
}

.bonus-text a {
    margin-top: 1rem
}

.bonus-content p {
    max-width: 700px;
    font-size: 1.8rem;
    line-height: 2rem;
}

.bonus-content h2 {
    max-width: 600px;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-content h3 {
    max-width: 600px;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 4rem;
    align-items: center;
    justify-items: center;
    max-width: 1312px;
    margin-top: 3rem;
}

.grid-details {
    color: white;
    flex-direction: column;
    justify-content: center;
    line-height: 1.8rem;
    text-align: center;
    gap: 1rem;
}

.grid-details h3 {
    font-size: 2rem;
}

.grid-details img {
    width: 10rem;
    padding-bottom: 3rem;
}

.grid-details p {
    max-width: 200px;
    font-size: 1.3rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 4rem;
    align-items: center;
    justify-items: center;
    max-width: 1312px;
    margin-top: 3rem;
    transition: all 1sec ease-in-out;
}

.image-grid img {
    width: 100%;
    height: auto;
    object-fit: inherit;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .image-grid {
        grid-template-columns: repeat(1, 1fr);
        --row-height: 400px;
        justify-content: center;
    }

}

.global-coverage {
    background-color: var(--main-color);
    margin-top: -3px;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

.coverage {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coverage-city {
    margin-top: -100px;
    z-index: -100;

}

.coverage-city img {
    width: 100%;
    height: auto;
    background-color: var(--main-color);
}

.coverage-text h3,
.coverage-text h2,
.coverage-text p {
    color: white;
    max-width: 600px;
    padding-bottom: 1rem;
}

.coverage-text h2 {
    font-size: 4rem;
    line-height: 4rem;
}

.coverage-text h3 {
    font-size: 1.5rem;
}

.coverage-text p {
    font-size: 1.8rem;
    line-height: 2.3rem;
}


/* CONTACT */
.contact-section {
    background-color: var(--quad-color);
    padding: 5rem 4rem;
    text-align: center;
}

.contact-content h1 {
    font-size: 3rem;
    color: var(--text-color);
}

.contact-content p {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.contact-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content input,
.contact-content textarea {
    width: 80%;
    max-width: 600px;
    padding: 1rem;
    margin: 1rem 0;
    border: none;
    border-radius: 8px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

/* FOOTER */

.footer-content {
    background-color: var(--tritary-color);
    color: var(--text-color);
    padding: 2rem;
    text-align: center;
}

.footer-links a,
.footer-socials a {
    color: var(--text-color);
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1.5rem;
}

.footer-socials a {
    font-size: 2rem;
    /* Adjust size for icons */
}

.footer-content p {
    margin-top: 1rem;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    border: solid white;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1000;
    display: none;
}


/* Animation */

/* .element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.element.show {
    opacity: 1;
    transform: translateY(0);
} */

/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
}
 */


/* in my previous site, I used containers that had similar settings for each.
Simple and straight to the point. Kept margins and padding in line for each.
maybe I can make 2-3 for sections that can be reused.

border-top: 1px solid rgba(27, 27, 27, 0.16); straight line
*/