:root {
    --primary-green: #4caf50;
    --secondary-green: #aed581;
    --background-green: #e8f5e9;
    --accent-orange: #ff9800;
    --accent-yellow: #ffeb3b;
    --text-dark: #2e7d32;
    --card-bg: rgba(255, 255, 255, 0.9);
}

html, body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--background-green);
    background-image: radial-gradient(circle at 20% 20%, #ffffff 0%, transparent 20%),
                      radial-gradient(circle at 80% 80%, #ffffff 0%, transparent 20%);
    background-size: 400px 400px;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
}

h1, h2, h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--text-dark);
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar Styling */
.navbar {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 0 0 30px 30px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-green) !important;
    text-decoration: none;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 15px;
}

.nav-link:hover {
    background: var(--secondary-green);
    color: white;
    transform: translateY(-2px);
}

.content {
    padding: 0 2rem 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hero-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "🥚";
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 5rem;
    opacity: 0.1;
    transform: rotate(-20deg);
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.6rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.columns-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    text-align: left;
    flex-wrap: wrap;
    align-items: flex-start;
}

.column {
    flex: 1;
    min-width: 320px;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 3px solid white;
    transition: transform 0.3s ease;
}

.column:hover {
    transform: translateY(-10px);
}

.column h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.portrait-image {
    width: 100%;
    border-radius: 30px;
    margin-bottom: 2rem;
    border: 8px solid white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Playful touches */
.btn-playful {
    background: var(--accent-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 6px 0 #e68a00;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.btn-playful:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #e68a00;
    color: white;
}

.btn-playful:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #e68a00;
}
