.app {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    background-color: #fff6f1;
    margin: 0px ! important;
    max-width: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1400px;
    overflow: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    
    /* Initial state: hidden */
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.header.visible {
    /* State when visible */
    transform: translateY(0);
}

.header-logo {
    width: 350px;
}


.header-1 {
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    font-size: 50px;
    line-height: 65px;
    color: #9073E6;
}

.content-1 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: normal;
    /* font-size: 20px; */
    font-size: larger;
    line-height: 40px;
    color: #5A5A5A;
}

.header-2 {
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    font-size: 35px;
    line-height: 45px;
    color: #9073E6;
}

.content-2 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: normal;
    font-size: larger;
    line-height: 30px;
    color: #5A5A5A;
}

.header-3 {
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    font-size: 25px;
    line-height: 45px;
    color: #DE7843;
}

.header-4 {
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    font-size: 25px;
    line-height: 45px;
    color: #9073E6;
}

.main-card {
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.sm-card {
    border-radius: 25px;
    padding: 1rem;
}

.flex-c {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-c.center {
    align-items: center;
}

.flex-r {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flex-r.center {
    align-items: center;
}

.go-btn {
    font-family: "Quicksand", sans-serif;
    width: fit-content;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    background-color: #9073E6; /* A standard Material Design color */
    border: none;
    border-radius: 50px; /* Highly rounded edges */
    cursor: pointer;
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.go-btn-icon {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

.go-btn:hover {
    background-color: #9a81e4;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.go-btn:active {
    background-color: #8a63ff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.subscribe-btn {
    font-family: "Quicksand", sans-serif;
    gap: 0.5rem;
    padding: 1rem 2rem;
    width: fit-content;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #DE7843;
    background-color: #ffffff; /* A standard Material Design color */
    border: none;
    border-radius: 50px; /* Highly rounded edges */
    cursor: pointer;
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.subscribe-btn-icon {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

.subscribe-btn:hover:not(:disabled) {
    background-color: #ffede3;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.subscribe-btn:active:not(:disabled) {
    background-color: #ffe2d2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.subscribe-btn:disabled {
    color: #b48166;
    background-color: #c7b9b2;
    cursor: not-allowed;
    pointer-events: none;
}

.subscribe-input {
    font-family: "Quicksand", sans-serif;
    width: 300px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #333;
    background-color: #ffffff;
    border: 1px solid #ffba95;
    border-radius: 50px; /* Large value for pill shape */
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

.subscribe-input::placeholder {
    color: #999;
}

.subscribe-input:focus {
    border-color: #ffdcc9;
    box-shadow: 0 0 0 3px #dd895b;
}

.img {
    max-width: 600px;
}

.reverse {
    flex-direction: row;
}

.box-card {
    gap: 1rem; 
    background-color: rgba(255, 255, 255, 0.9); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    height: fit-content; 
    position: absolute; 
    left: 50%; 
    bottom: 40;
}

.mission-container {
    position: relative; 
    right: 110px;
}

.email-notify-container {
    position: relative; 
    gap: 1rem; 
    background-color: #DE7843;
    border-radius: 25px;
    padding: 25px 25px 25px 25px;
}

.email-notify {
    height: 150px;
}

.spacer {
    height: 1.5rem;
}

.mobile-spacing {

}

.purple-card {
    gap: 1rem; 
    width: 330px; 
    height: 390px; 
    background-color: #D4CDE4;
}


.orange-card {
    width: 330px; 
    background-color: #FFE8D4;
}

@media screen and (max-width: 1400px) {
    .content {
        max-width: 100%;
    }

    .box-card {
        gap: 1rem; 
        background-color: rgba(255, 255, 255, 0.9); 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
        height: fit-content; 
        position: relative; 
        left: 0; 
        bottom: 0;
    }

    .flex-r {
        flex-direction: column;
        align-items: center;
    }

    .flex-c {
        align-items: center;
    }

    .reverse {
        flex-direction: column-reverse;
    }

    .header-1, .header-2, .header-3, .header-4, .content-1, .content-2 {
        text-align: center;
        text-wrap: wrap;
    }

    .header-1 {
        font-size: 37px;
        line-height: 55px;
    }

    .header-2 {
        font-size: 30px;
    }

    .img {
        max-width: 100%;
        height: auto;
    }

    .email-notify-container {
        padding: 75px 10px 25px 10px;
        margin: 95px 20px 20px 20px;
    }

    .email-notify {
        position: absolute; 
        bottom: 80%;
    }

    .header-logo {
        width: 60%;
    }

    .mission-container {
        right: 0;
    }

    .spacer {
        height: 0.1rem;
    }

    .mobile-spacing {
        margin-left: 1rem;
        margin-right: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .purple-card {
        width: auto;
        height: auto;
    }

    .orange-card {
        width: calc(100% - 2rem);
        height: auto;
    }
}