@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;600&display=swap');

:root {
    --primary-color: #1a4b77;
    --secondary-color: #3d7eaa;
    --accent-color: #4a90e2;
    --background-color: white;
    --text-color: #333333;
    --max-width: 740px;
    --soft-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(26, 75, 119, 0.37);
}

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

body {
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    /* Clean white background */
    font-size: 16px;
    font-weight: 400;
    padding: 2rem;
    /* Add padding for a breathable layout */
    margin: 0;
    /* Ensure no default margin */
    box-shadow: none;
    /* Removed blue glow effect */
    overflow-x: hidden;
    /* Prevent horizontal overflow */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
}

.header,
.footer,
#investment,
.planter-grid,
.anchor-grid,
.cta-grid {
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    background-color: white;
    border-radius: 20px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.header {
    text-align: center;
}

.header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 100%;
    margin: 0 auto 1.5rem;
    color: rgba(51, 51, 51, 0.7);
    font-weight: 400;
}

.content {
    padding: 2rem 0;
    background-color: white;
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
    margin-bottom: 2rem;
}

.content-header {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.content-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 2rem;
    color: #333333;
    background-color: white;
    border-radius: 0 0 20px 20px;
}

.content-body p {
    margin-bottom: 2rem;
}

.content-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

blockquote {
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(51, 51, 51, 0.8);
}

figure {
    margin: 2rem -15px;
}

figure img {
    width: 100%;
    height: auto;
}

figure figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
    margin-top: 0.5rem;
}

.highlight {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    background-color: rgba(255, 215, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

button,
a {
    min-height: 44px;
    min-width: 44px;
}

img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    body {
        font-size: 18px;
    }

    .container {
        padding: 0 20px;
    }

    .header {
        padding: 4rem 1rem;
    }

    .content-body {
        font-size: 1.2rem;
    }

    figure {
        margin: 2rem -20px;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #333333;
        --background-color: #ffffff;
    }

    body {
        background: linear-gradient(135deg, #3d7eaa, #c2e0ff);
    }

    .container,
    .header,
    .footer,
    #investment,
    .planter-grid,
    .anchor-grid,
    .cta-grid {
        background-color: #ffffff;
    }

    blockquote {
        color: rgba(51, 51, 51, 0.8);
    }

    figure figcaption {
        color: rgba(51, 51, 51, 0.7);
    }

    .highlight {
        background-color: rgba(255, 215, 0, 0.3);
    }
}





/* Improved mobile styles */
@media only screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }

    .header {
        padding: 2rem 0.5rem;
    }

    .content {
        padding: 2rem 0;
    }

    .content-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .content-body {
        font-size: 1rem;
    }

    figure {
        margin: 2rem -20px;
    }






    .splash p {
        font-size: 1rem;
    }

    .splash button {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    /* Improved button styles for mobile */
    button,
    .cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
        margin: 10px 0;
    }
}

/* Refined button styles */
.cta-button,
button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: var(--soft-shadow);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover,
button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Updated Splash styles */
.splash {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.splash img {
    border-radius: 10px;
}

.splash-content {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    /* Softer shadow */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    z-index: 1;

}

.splash-head {
    line-height: 1.1;
    color: #333;
    /* Darker text color for contrast */
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    /* Bolder font weight */
    letter-spacing: -1px;
    margin-bottom: 20px;
    /* Increased margin for better spacing */
    margin-top: 20px;
}

.splash p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
}

.splash button {
    font-family: 'Barlow', sans-serif;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.splash button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

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

.content-body {
    max-width: 800px;
    margin: 0 auto;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1em;
}

@media only screen and (max-width: 768px) {
    p {
        font-size: 14px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.column {
    margin-bottom: 2em;
}

@media only screen and (min-width: 768px) {
    .content-body {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .column {
        flex-basis: calc(33.33% - 20px);
    }
}

button {
    padding: 10px 20px;
    font-size: 16px;
    margin: 10px 5px;
}

@media only screen and (max-width: 480px) {
    button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
}

#investment {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#investment h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.investment-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.investment-text {
    flex: 1;
    padding-right: 50px;
}

.investment-item {
    margin-bottom: 30px;
}

.investment-item .number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #e0e0e0;
    color: #333;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.investment-item h3 {
    display: inline-block;
    font-size: 1.2em;
    color: #333;
}

.investment-item p {
    margin-top: 10px;
    color: #666;
}

.investment-image {
    flex: 1;
}

.investment-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.planter-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.planter-image {
    flex: 1;
}

.planter-text {
    flex: 1;
}

.planter-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.planter-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    list-style-type: none;
    padding-left: 0;
}

.planter-submenu.active {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.planter-section h3 {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

.planter-section h3::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.planter-section h3.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.anchor-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.anchor-image {
    width: 100%;
}

.anchor-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.anchor-text {
    display: grid;
    gap: 1rem;
}

.anchor-section h3 {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .anchor-grid {
        flex-direction: row;
    }

    .anchor-image {
        flex: 1;
    }

    .anchor-text {
        flex: 1;
    }
}

.cta-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.cta-image {
    flex: 1;
}

.cta-text {
    flex: 1;
}

.cta-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cta-section {
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-grid {
        flex-direction: column;
    }
}

/* Unified content container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Consistent section spacing */
.content {
    margin-bottom: 4rem;
}

/* Unified grid layouts */
.three-column-grid,
.planter-grid,
.anchor-grid,
.cta-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .three-column-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .planter-grid,
    .anchor-grid,
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Consistent image styling */
.content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--soft-shadow);
}

/* Footer styles */
.site-footer {
    background-color: #f9f9f9;
    padding: 2rem;
    margin-top: 4rem;
    border-radius: 20px;
    border: none;
    box-shadow: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav a {
    margin-left: 1rem;
    color: var(--text-color);
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* Refined button styles */
.cta-button,
button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cta-button:hover,
button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Updated section styles */
.header,
.content,
.footer,
#investment,
.planter-grid,
.anchor-grid,
.cta-grid {
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    background-color: white;
    border-radius: 20px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.content-header {
    margin-bottom: 3rem;
}

.content-body {
    padding: 0 1rem;
}

/* Improved responsiveness */
@media (max-width: 768px) {

    .header,
    .content,
    .footer,
    #investment,
    .planter-grid,
    .anchor-grid,
    .cta-grid {
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }

    .content-body {
        padding: 0;
    }
}

@media (max-width: 480px) {

    .header,
    .content,
    .footer,
    #investment,
    .planter-grid,
    .anchor-grid,
    .cta-grid {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Footer styles */
.site-footer {
    background-color: #f9f9f9;
    padding: 2rem;
    margin-top: 4rem;
    border-radius: 20px;
    border: none;
    box-shadow: none;
}

.cta-button:hover,
button:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


#newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 20px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input,
.newsletter-form select {
    padding: 0.8rem;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-color);
}

.newsletter-form button {
    padding: 0.8rem;
    font-size: 1rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.newsletter-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.newsletter-benefits {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.newsletter-benefits-list {
    list-style-type: none;
    padding: 0;
}

.newsletter-benefits-list li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}



/*TYPOGRAPHY */

.splash-head {
    line-height: .9;
    z-index: 3;
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.heading-1 {
    line-height: 1.1;
    color: black;
    z-index: 3;
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -1px;
}

.heading-2 {
    line-height: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.heading-3 {
    line-height: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
}


.submenu-splash {
    text-align: center;
    margin-bottom: 3rem;
}

.centered-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 800px;
}

.full-width-splash {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
}

.full-width-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the entire section */
}

.splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay for better readability */
    color: white;
    text-align: center;
    padding: 20px;
    /* Added padding for better spacing */
}

.splash-overlay h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    /* Responsive font size */
    font-weight: 600;
    /* Slightly less bold for a sleeker look */
    margin: 0;
    line-height: 1.2;
    /* More compact line height */
    letter-spacing: 1px;
    /* Added letter spacing for a more open text */
}