:root {
    /* Primary Palette */
    --primary-color: #89C2D9; /* Chill Blue */
    --primary-light: #A9D6E5; /* Lighter Chill Blue */
    --bg-color: #FFF9E8; /* Cream - Sloth face base */
    --accent-color: #C4A076; /* Tan - Sloth markings */
    
    /* Secondary Palette */
    --text-muted: #768F6C; /* Olive Green */
    --secondary-color: #F68F6A; /* Sunset Orange */
    
    --text-main: #2A3B4C; /* Deep readable contrasting color */
    
    --glass-bg: rgba(255, 249, 232, 0.7);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(137, 194, 217, 0.2);
}

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

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

h1, h2, h3, .logo-text, .btn {
    font-family: 'Baloo 2', cursive;
}

/* Navigation */
.clean-nav {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

/* Navigation Overlay Logo Image */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-text {
    font-family: 'Baloo 2', cursive;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Overlay Navigation Styles */
.nav-overlay {
    height: 100vh;
    width: 350px;
    max-width: 100vw;
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    transform: translateX(100%); /* Right side pull out */
    background-color: var(--glass-bg); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    overflow-x: hidden;
    transition: transform 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.overlay-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.overlay-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 2.5rem;
    font-family: 'Baloo 2', cursive;
    color: var(--primary-color);
    display: block;
    transition: 0.3s;
}

.overlay-content a:hover, .overlay-content a:focus {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.nav-overlay-active {
    transform: translateX(0); /* slide in */
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.text-left {
    text-align: left;
}

/* Full form styling */
.contact-form-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.contact-form-full .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-full label {
    font-weight: 600;
    color: var(--text-main);
}

.contact-form-full input {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
}


.hamburger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(137, 194, 217, 0.4);
}

.btn-primary:active { color: white; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(137, 194, 217, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Split Hero Layout */
.hero-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 90px 5% 10px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 0;
}

.hero-split-left {
    flex: 1;
    max-width: 45%;
}

.hero-split-left h1 {
    font-size: 5rem;
    color: var(--primary-color);
    line-height: 1.1;
    margin: 0;
}

.hero-split-right {
    flex: 1;
    max-width: 50%;
}

.hero-split-right p.hero-subtitle {
    font-size: 2.2rem;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}



/* Sections General */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 5%;
}

.page-hero {
    min-height: auto !important;
    padding: 100px 5% 0px !important;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s;
}

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

/* Pillars */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.card-icon.squiggle {
    opacity: 0.8;
}

.cards-grid h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.cards-grid p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Creative Spotlight */
.creative-spotlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 40px auto 80px;
    padding: 0 5%;
    gap: 30px;
}

.creative-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--secondary-color); }
.creative-content p { font-size: 1.2rem; margin-bottom: 30px; color: var(--text-muted); }

/* Footer / Contact */
footer {
    padding: 80px 5% 40px;
    text-align: center;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, rgba(209, 178, 225, 0.4), rgba(137, 194, 217, 0.2));
}

.contact-card h2 { margin-bottom: 10px; color: var(--primary-color);}
.contact-card p { margin-bottom: 30px; color: var(--text-muted); }

.contact-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.contact-form input {
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    width: 60%;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus { border-color: var(--primary-color); }

.copyright { color: var(--text-muted); font-size: 0.9rem; }

/* Animations classes for JS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.appear { opacity: 1; transform: translateY(0); }
.slide-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-up.appear { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    .hero-split-left, .hero-split-right {
        max-width: 100%;
    }
    .hero-split-left h1 {
        font-size: 4rem;
        margin-bottom: 30px;
    }
    .hero-split-right p.hero-subtitle {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding-top: 140px; min-height: 60vh; }
    .hero-content h1 { font-size: 3.5rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .contact-form { flex-direction: column; align-items: center; }
    .contact-form input { width: 100%; margin-bottom: 10px; }
}
