:root {
    --bg-color: #F5E6D3; /* Soft beige */
    --text-color: #5D4037; /* Warm brown */
    --accent-color: #7E57C2; /* Soft purple */
    --secondary-color: #80CBC4; /* Soft teal */
    --tertiary-color: #FFCC80; /* Light orange */
    --card-bg: rgba(255, 255, 255, 0.7);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    width: 100%;
    padding: 2rem;
    z-index: 100;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(245, 230, 211, 0.9), rgba(245, 230, 211, 0));
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

h1 {
    font-family: 'Bitter', serif;
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-family: 'Bitter', serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 400;
    color: var(--accent-color);
}

.lead-text {
    font-size: 1.5rem;
    max-width: 600px;
    opacity: 0.9;
    color: var(--text-color);
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.circle.one {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, var(--accent-color), var(--secondary-color));
}

.circle.two {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 15%;
    background: radial-gradient(circle, var(--tertiary-color), var(--secondary-color));
}

.circle.three {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 30%;
    background: radial-gradient(circle, var(--secondary-color), var(--accent-color));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 64, 55, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.value-card h3 {
    font-family: 'Bitter', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.quote {
    font-family: 'Bitter', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.text-columns {
    column-count: 2;
    column-gap: 3rem;
    margin-top: 2rem;
}

.text-columns p {
    margin-bottom: 1rem;
}

/* Scroll-based color transition */
.color-transition {
    transition: background-color 0.5s ease;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .text-columns {
        column-count: 1;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .nav-links a {
        margin: 0 1rem;
    }
}