/* General Styles & Scroll Snap */
:root {
    --banner-color: #24a0ed;
    --page-zero-accent-color: rgb(104, 195, 159);
    --page-zero-text-color: #333;
    --main-accent-color: #24a0ed;
    --secondary-accent-color: #7B68EE; /* MediumSlateBlue - a nice purple */
    --tertiary-accent-color: #4169E1; /* RoyalBlue - another blue */
    --text-color: #333;
    --light-background: #fdfdfd;
    --white-background: #ffffff;
    --headline-text-color: rgb(104, 195, 159);
    --headline-subtitle-text-color: rgb(104, 195, 159);
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-background);
}

/* Slide Container */
.slide {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden; /* Ensure gradients don't bleed */
}

/* Content Wrapper for Readability */
.content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    box-sizing: border-box;
    z-index: 2; /* Keep content above backgrounds */
    position: relative;
}

/* Gradient Overlay for subsequent slides */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6; /* Adjust transparency as needed */
}


.slide .div_homepage_section_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 50px;
}

.slide .div_homepage_section_wrapper {
    display: grid;
    grid-template-rows: auto 20%;
}

.slide .div_homepage_section_content_wrapper {
    display: grid;
    row-gap: 10px;
}

.slide .div_homepage_button_wrapper {
    display: grid;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
}

.slide .div_contact_line {
    display: grid;
    grid-template-columns: 40px auto;
    column-gap: 10px;
}

/* Specific Slide Backgrounds and Colors */
/* Slide 0: Banner */
#slide-0 {
    background-color: var(--banner-color);
    color: white;
    flex-direction: column;
    justify-content: flex-start;


}

#slide-0 h1 {
    font-size: 3.0 rem;
    margin-bottom: 1rem;
}

#slide-0 h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    font-weight: 400;
}


/*#slide-0 ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 2rem 0 0;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    flex-wrap: wrap;*/
/*    gap: 2rem;*/
/*}*/

/*#slide-0 ul li {*/
/*    font-size: 1.25rem;*/
/*    font-weight: 300;*/
/*    max-width: 200px;*/
/*    color: #333;*/
/*}*/

/*.slide ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    flex-wrap: wrap;*/
/*    gap: 2rem;*/
/*}*/

/*.slide ul li {*/
/*    font-size: 1.25rem;*/
/*    font-weight: 300;*/
/*    max-width: 200px;*/
/*    color: #333;*/
/*}*/

/* Subsequent Slides */
/* Subsequent Slides */
#slide-0 { background-color: var(--white-background); }
#slide-0::before { background: linear-gradient(to right, rgba(255,255,255,0.5) 50%, var(--page-zero-accent-color) 100%); }
#slide-0 h1 { color: var(--headline-text-color); }
#slide-0 h2 { color: var(--headline-subtitle-text-color); }
#slide-0 h3 { color: var(--page-zero-text-color); }

#slide-1 { background-color: var(--white-background); }
#slide-1::before { background: linear-gradient(to right, rgba(255,255,255,0.5) 50%, var(--main-accent-color) 100%); }
#slide-1 h2, #slide-1 h3 { color: var(--main-accent-color); }

#slide-2 { background-color: var(--white-background); }
#slide-2::before { background: linear-gradient(to right, rgba(255,255,255,0.5) 50%, var(--secondary-accent-color) 100%); }
#slide-2 h2, #slide-2 h3 { color: var(--secondary-accent-color); }

#slide-3 { background-color: var(--white-background); }
#slide-3::before { background: linear-gradient(to right, rgba(255,255,255,0.5) 50%, var(--tertiary-accent-color) 100%); }
#slide-3 h2, #slide-3 h3 { color: var(--tertiary-accent-color); }

#slide-4 { background-color: var(--white-background); }
#slide-4::before { background: linear-gradient(to right, rgba(255,255,255,0.5) 50%, var(--main-accent-color) 100%); }
#slide-4 h2, #slide-4 h3 { color: var(--main-accent-color); }

#slide-5 { background-color: var(--white-background); }
#slide-5::before { background: linear-gradient(to right, rgba(255,255,255,0.5) 50%, var(--secondary-accent-color) 100%); }
#slide-5 h2, #slide-5 h3 { color: var(--secondary-accent-color); }

#slide-7 { background-color: var(--white-background); }
#slide-7::before { background: linear-gradient(to right, rgba(255,255,255,0.5) 50%, var(--page-zero-accent-color) 100%); }
#slide-7 h1 { color: var(--headline-text-color); }
#slide-7 h2 { color: var(--headline-subtitle-text-color); }
#slide-7 h3 { color: var(--page-zero-text-color); }

/* General Content Styling */
h2 {
    font-size: 2.5rem;
    margin-top: 0;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

p {
    font-size: 1.15rem;
    font-weight: 300;
}


.div_user_reviews_grid {
    display: grid;
    grid-row-gap: 30px;
    margin: 0 auto;
    max-width: 500px;
    /*grid-template-rows: 30px 30px 30px;*/
}

.div_user_reviews_wrapper {
    max-width: 80%;
}

.div_image_icon_grid {
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(40px, 60px));
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
}

.div_payment_methods {
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(4, 100px);
    grid-column-gap: 10px;
    max-width: 430px;
}

.div_image_icon_wrapper {
    max-width: 36px; max-height: 36px;
    margin: 0 auto;

}

.div_image_wechat_group {
    width: 200px;
    /*margin: 0 auto;*/
}
