
:root
{
    --fcw: 300px;
    --2fcw: 600px;
    --3fcw: 900px;
    --4fcw: 1200px;
}

a {
  color: #00B7FF;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
    background: #FFEFD1
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgba(255, 239, 209, 1);
    backdrop-filter: blur(7px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 10vh
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    /*background: #FFB347;*/
    border-radius: 50%;
    border: 3px solid #8B4513;
    position: relative;
}

.logo-icon::before {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}



.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-text h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-button {
    background: #000;
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: translateY(-3px);
}

.app-mockup {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
}

.screen {
    margin: 0px;
    height: calc(100% - 40px);
    background: transparent;
    border-radius: 20px;
    /*padding: 30px 20px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 20px;*/
}

.screenBorder {
    margin: 0px;
    height: calc(100% - 40px);
    background: transparent;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 14px solid #333;
    box-shadow: 0 20px 40px rgba(46, 46, 46, 0.24);
}

.features {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.8);
}



/* Default: 1 column for width < 768px */
.features-grid {
    display: grid;    
    justify-items: center;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 columns for width >= 800px and < 1200px */
@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 4 columns for width >= 1200px */
@media (min-width: 1500px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: solid #c5c5c5 1px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}


.headFont
{font-family: 'Nunito', sans-serif;
    font-weight: 800;}

.languages {
    padding: 5rem 0;
    background: rgb(255, 239, 209);
    color: #212121;
    text-align: center;
}


.language-flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.flag-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    cursor: pointer;
    width: 120px;
}
.flag-item span::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 8px auto;
}

.flag-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.iso-code {
    background-color: #F2A822;
    color: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 8px;
    min-width: 35px;
}

.flag-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.flag {
    font-size: 3rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.flag:hover {
    transform: scale(1.2);
}

.download-section {
    padding: 5rem 0;
    background: #fcfaf7;
    color: #212121;
    text-align: center;
}

.footer {
    background: rgb(255, 239, 209);
    color: #212121;
    padding: 2rem 0;
    text-align: center;
}

.topSection {
    margin-top: 10vh;
}

/* #region hero*/
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

.hero-content> :first-child {
    justify-self: end;
}

.hero-content> :last-child {
    justify-self: center;
}

/* #endregion hero*/

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content> :first-child
    {
        justify-self: center;
        width: 70vw !important;
        text-align: center !important;
    }
    .tmangoGreen2 {
        justify-self: center;
        width: 70vw !important;
        text-align: center !important;
    }
    .subtitle{text-align: center !important;}

    .hero-content> :last-child {
        justify-self: center;
    }

    .topSection {
        margin-top: 15vh;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.1rem;
        text-align: center;
    }

    .hero-text p {
        text-align: center;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .cta-buttons {
        justify-content: center;
    }
}

.pad {
    padding-left: 50px;
    padding-right: 50px;
}

.mangoBg {
    background-color: #FFEFD1;
}

.striped
{
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f7c275' fill-opacity='0.11' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.striped_t 
{
    
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f7c275' fill-opacity='0.08' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

/* #region */
.mangoWhite {
    background-color: #fdfdfc;
}

.mangoYellow {
    background-color: #e6b537;
}

.mangoOrange {
    background-color: #e94421;
}

.mangoOrange2 {
    background-color: #ef8428;
}

.mangoOrange3 {
    background-color: #F6AF25;
}

.mangoBrown {
    background-color: #593f34;
}

.mangoCoco {
    background-color: #916b5b;
}

.mangoGreen1 {
    background-color: #4E9D51;
}

.mangoGreen2 {
    background-color: #5A8569;
}

.tmangoBg {
    color: #FFEFD1;
}

.tmangoWhite {
    color: #fdfdfc;
}

.tmangoYellow {
    color: #e6b537;
}

.tmangoOrange {
    color: #e94421;
}

.tmangoOrange2 {
    color: #ef8428;
}

.tmangoOrange3 {
    color: #F6AF25;
}

.tmangoBrown {
    color: #593f34;
}

.tmangoCoco {
    color: #916b5b;
}

.tmangoGreen1 {
    color: #4E9D51;
}

.tmangoGreen2 {
    color: #5A8569;
}

.white {
    color: #fff !important;
}
/* #endregion hero*/