:root {
    --color-pink: #FFC0CB; /* Light Pink - More subtle */
    --color-lavender: #DDA0DD; /* Lavender - Calming, hopeful */
    --color-dark-accent: #7A3D7A; /* Deep Plum/Magenta - Strong accent */
    --color-light-background: #FDF9FF; /* Very Pale Lavender/Off-White */
    --color-section-bg-alt: #F8EDF8; /* A slightly deeper pale lavender for contrast */
    --color-text: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-weight: 100;
    overflow-x: hidden;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light-background);   
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

h2, h3, h4 {
    font-family: 'Aleo', serif; /* For headings and titles */
    color: var(--color-dark-accent);
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 700;
}

.subtitle {
    text-align: center;
    margin-bottom: 2em;
    font-style: italic;
    color: #666;
    font-weight: 500;
    font-size: 1.1em;
}

.background-alt {
    background-color: var(--color-section-bg-alt); /* Different hue for section differentiation */
}

.cta-button {
    display: inline-block;
    background-color: var(--color-dark-accent);
    color: white !important;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700; /* Aleo boldness */
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Aleo', serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: var(--color-lavender);
    transform: translateY(-2px);
}

a{
    color: unset;
    text-decoration: unset;
}

/* Mobile Portrait */


nav{
    display: flex;
    align-items: center;
}

nav ul{
    list-style: none;
}

img{
    width:100%;
}

#navigation{
    position: fixed;
    z-index: 1;
    background-color: white;
}

.logo {
    width:100%;
}

.logo a {
    font-family: 'Aleo', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-dark-accent);
    letter-spacing: 0.8px;
    display:flex;
    align-items: center;
    width:100%;
}

.logo a h1{
    font-size: 1em;
    font-weight: 700;
}

#logo{
    width:50%;
}

#logo-td {
    margin: 0;
    padding: 1vw;
    width: 75vw;
}

#logo-td a {
    padding: 0;
}

#logo-td a:visited {
    background-color: white;
}

#logo-td a:hover {
    background-color: white;
}

#logo-td a:active {
    background-color: white;
}

#menu-td {
    width: 10vw;
    text-align: center;
    padding: 0 3%;
    display:flex;
}

#menu-td ul {
    display: none;
}

#mobile-menu-button {
    height: 100%;
    font-weight: bold;
    text-decoration: none;
    color: var(--color-text);
    width: 100%;
    padding: 5% 2%;
    display: block;
    margin: auto 15%;
}

#mobile-menu-button:hover {
    color: var(--color-lavender);
    border-bottom: 2px solid var(--color-lavender);
    padding: 10% 10%;
}

#mobile-menu {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background-color: white;
    position: fixed;
    right: 0;
    top: 15vh;
    width: 100vw;
    height: 85vh;
    vertical-align: middle;
    z-index: 1;
}

#mobile-menu ul{    
    height: 100%;
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#navigation ul li a,#mobile-menu ul li a {
    text-decoration: none;
    color: var(--color-text);
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s, border-bottom 0.3s;
    padding: 5px 0;
    font-size: 1.05em;
}

#navigation ul li a:hover,#mobile-menu ul li a:hover {
    color: var(--color-lavender);
    border-bottom: 2px solid var(--color-lavender);
}


section {
    padding: 5%;
    scroll-margin-top: 17vh;
}

#main-banner {
    background: linear-gradient(145deg, var(--color-pink) 0%, var(--color-lavender) 100%);
    color: white;
    padding: 4% 5%;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* For any potential background elements */
    padding-top: 25vh;
}

.banner-content {
    max-width: 900px;
    position: relative;
}

#main-banner h2 {
    font-family: 'Aleo', serif;
    font-size: 3.8em;
    margin-bottom: 25px;
    color: white; /* Override h1 default */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-weight: 700;
}

#main-banner p {
    font-size: 1.3em;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.7;
}

.bloomie{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav div{
    padding: 5%;
}

.banner-content p{    
    font-size: 125%;  
    margin: 0.5em 0;
}

.banner-content h3{    
    margin: 0.5em 0;
}

#main-banner-2 {
    background: linear-gradient(145deg, var(--color-pink) 0%, var(--color-lavender) 100%);
    color: white;
    padding: 50px 5%;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; 
    padding-top: 25vh;
    flex-direction: column;
}


#main-banner-2 .banner-content{
    max-width: 900px;
    position: relative;
}

.banner-image{
    width: 90%;
}

.banner-image picture{
    width: 100%;
}

.banner-image img{
    width: 100%;
}

#main-banner-2 h2 {
    font-family: 'Aleo', serif;
    font-size: 180%;
    margin-bottom: 25px;
    color: white; /* Override h1 default */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-weight: 700;
}

#main-banner-2 p {
    font-size: 1.3em;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.7;
}

.read-more{    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 80%;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 15px;
    background-color: var(--color-light-background);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.read-more i {
    color: var(--color-lavender);
    font-size: 100%;
}

.read-more h3 {
    font-size: 75%;
    padding: 3%;
}

.bloom-text {
    scroll-margin-top: 30vh;
    max-height: 0; /* Initially hidden */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    border-top: 1px solid #eee;
    margin-top: 5%;
    line-height: 1.5;
    color: #555;
    font-family: 'Quicksand', sans-serif;
    width: 100%;
    margin-left: auto;
    margin-right: auto;   
    color: white;
    padding: 4% 5%;
    text-align: center;
}

.avatar-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
}

.avatar-card {
    text-align: center;
    width: 80%;
    padding: 5%;
    border-radius: 10%;
    background-color: var(--color-light-background); /* Subtle background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.avatar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(221, 160, 221, 0.4); /* Lavender shadow */
}

.avatar-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--color-pink); /* Thicker border */
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.avatar-card:hover img {
    border-color: var(--color-lavender);
}

.avatar-card h3 {
    font-family: 'Aleo', serif;
    font-size: 1.3em;
    color: var(--color-dark-accent);
    margin-bottom: 8px;
}

.bio-toggle {
    font-family: 'Quicksand', sans-serif;
    font-style: normal;
    color: var(--color-lavender);
    font-size: 0.95em;
    font-weight: 500;
    margin-top: 10px;
    display: block; /* Make it a block for better click area */
}

.bio-text {
    scroll-margin-top: 17vh;
    max-height: 0; /* Initially hidden */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    text-align: left;
    padding-top: 5%;
    border-top: 1px solid #eee;
    margin-top: 5%;
    line-height: 1.5;
    color: #555;
    font-family: 'Quicksand', sans-serif;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.bio-text p {
    padding:3% 0;
    font-size: 110%;

}

.res-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; /* Space between cards */
    max-width: 1200px;
    margin: 15px auto;
}

.res-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 180px; /* Fixed width for better layout */
    height: 180px; /* Fixed width for better layout */
    cursor: pointer;
    padding: 20px;
    border-radius: 100%;
    background-color: var(--color-light-background); /* Subtle background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.res-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(221, 160, 221, 0.4); /* Lavender shadow */
}

.res-card h3 {
    font-family: 'Aleo', serif;
    font-size: 1.3em;
    color: var(--color-dark-accent);
    margin-bottom: 8px;
}

.res-card i{
    color:var(--color-lavender);
    font-size: 250%;
}

.res-card:hover i{
    color: var(--color-pink);   
}

.content-text {
    scroll-margin-top: 20vh;
    max-height: 0; /* Initially hidden */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #444;
    margin-top: 15px;
}

.content-text p{
    margin: 10% 0;
    font-size: 1.1em;
    line-height: 110%;
}

#resources a{
    font-family: 'Aleo', serif;
    color: var(--color-dark-accent);
    margin: 5% 0;
    font-size: 1.1em;
    line-height: 1.3;
    transition: color 0.3s;
    display: block;
}

#resources a:hover{
    color: var(--color-lavender);
}

.card-grid {
    display: flex;
    justify-content: center;
    gap: 35px; /* Increased gap */
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: var(--color-light-background); /* Subtle background */
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* Softer, larger shadow */
    overflow: hidden;
    width: 100%;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 220px; /* Taller images */
    object-fit: cover;
    border-bottom: 3px solid var(--color-pink); /* Accent border */
}

.card h3 {
    font-family: 'Aleo', serif;
    padding: 20px 15px;
    font-size: 1.3em;
    color: var(--color-dark-accent);
    margin-bottom: 0;
    min-height: 70px; /* Ensure consistent card height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card h4 {
    font-family: 'Quicksand', serif;
    padding: 20px 15px;
    font-size: 1.1em;
    margin-bottom: 0;
    min-height: 70px; /* Ensure consistent card height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
}

.guide-card .download-link {
    display: block;
    padding: 12px 0;
    background-color: var(--color-pink);
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
    border-radius: 0 0 12px 12px; /* Only bottom corners */
    font-family: 'Aleo', serif;
    letter-spacing: 0.5px;
}

.guide-card .download-link:hover {
    background-color: var(--color-lavender);
}

.guide-card .download-link input[type="submit"]{
    all:unset;
    width: 100%;
}

#footer {
    background-color: var(--color-dark-accent);
    color: white;
    padding: 60px 5% 20px;
    text-align: center;
    scroll-margin-top: 17vh;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    max-width: 350px;
    text-align: left;
}

.footer-info h3 {
    font-family: 'Aleo', serif;
    color: var(--color-pink);
    margin-bottom: 20px;
    font-size: 1.8em;
}

.footer-info p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--color-lavender);
    text-decoration: none;
    margin-right: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-pink);
}

.footer-form-container {
    width: 100%;
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #8D5A8D;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-form label {
    margin-top: 15px;
    margin-bottom: 8px;
    color: var(--color-pink);
    font-weight: 700;
    font-size: 1em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-bottom: 15px;
    width: 100%;
    font-size: 1em;
    background-color: white;
    color: #333;
    font-family: 'Quicksand', sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 2px; 
    accent-color: var(--color-pink);
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    font-family: 'Quicksand', sans-serif;
    flex: 1;
}

.footer .cta-button {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background-color: var(--color-pink);
    color: var(--color-dark-accent) !important;
    font-size: 1.1em;
}

.footer .cta-button:hover {
    background-color: white;
    color: var(--color-dark-accent) !important;
}

footer a{
    color: var(--color-pink);
    font-weight: bold;
}

footer a:hover{
    color: var(--color-light-background);
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85em;
    color: #E0CCE0;
    margin-top: 30px;
}

.whatsapp {
    position: fixed;
    bottom: 2%;
    right: 0;
    margin: 2%;
    padding: 5px;
    color: #25D366;
    z-index: 1;
}

.whatsapp:hover {
    color: #075e54;
}

/* Landscape */
@media screen and (orientation:landscape) {
    
    #navigation{
        height: 20vh;
    }

    #logo{
        width: 15%;
    }

    .main-banner p{
        margin-bottom: unset;
    }

    #main-banner-2 {
        flex-direction: row;
    }

    .bloomie {
        flex-direction: row;
    }

    .bloomie picture{
        width:70%;
    }

    .avatar-card{
        width: 40%;
    }

    .content-text p {
        margin: 5% 0;
    }

    .card-grid a{
        width: 29%;
    }

    .card h3 {
        height: 55vh;
    }

    .guide-card{
        width:29%;
    }
}

/* Tablet Portrait */
@media screen and (min-width:768px) and (max-width:1279px) and (orientation:portrait) {
    
    nav div {
        padding: 4%;
    }

    .logo {
        width: 85%;
    }

    #logo {
        width: 15%;
    }

    #mobile-menu {
        top: 13vh;
        height: 87vh;
    }

    #bars{
        font-size: 200%;
    }

    #navigation ul li a, #mobile-menu ul li a {
        font-size: 2.5em;
    }

    img {
        width: 65%;
    }

    section {
        scroll-margin-top: 10vh;
    }

    .subtitle {
        font-size: 125%;
    }

    .avatar-card{
        width: 40%;
    }

    .avatar-card img {
        width: 25vw;
        height: 25vw;
    }

    .bio-text p {
        font-size: 135%;
    }

    .content-text p {
        margin: 5% 0;
        font-size: 1.5em;
    }

    #resources a {
        font-size: 1.25em;
    }

    .card-grid a{
        width: 50%;
    }

    .guide-card{
        width:50%;
    }

    .whatsapp{
        font-size: 15vw !important;
    }
}

/* Tablet Landscape */
@media screen and (min-width:768px) and (max-width:1279px) and (orientation:landscape) {

    #logo {
        width: 10%;
    }

    .card h3 {
        height: 20vh;
    }


}

/* PC */
@media screen and (min-width:1280px) {

    #navigation {
        height: 15vh;
    }

    .logo{
        width: 50vw;
    }

    #menu-td{        
        width: 50vw;
    }

    #menu-td ul{
        display:flex;
    }

    #menu-td a{
        display:none;
    }

    #navigation ul li a, #mobile-menu ul li a {
        display: block;
    }

    .banner-image {
        width: 40%;
    }
    
    section {
        scroll-margin-top: 15vh;
    }

    .avatar-card {
        width: 20%;
    }

    .card h3 {
        height: 15vh;
    }
}