:root {
    --mint: #B6EED9;
    --light-green: #DFF0C8;
    --peach: #FFD9BD;
    --pink: #FF9AA2;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --bg-light: #fafafa;

    --font-main: 'Outfit', sans-serif;
}


html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-logo {
    height: 40px;
    width: auto;
    border-radius: 50%;
}

.logo {
    font-size: 1.5rem;
    /* Slightly smaller to fit with logo */
    font-weight: 700;
    color: var(--text-dark);
}

.logo .highlight {
    color: var(--pink);
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

nav a {
    font-weight: 500;
    color: var(--text-light);
}

nav a:hover {
    color: var(--pink);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--pink);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
}

nav .btn {
    background-color: var(--text-dark);
    color: white;
}

nav .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(182, 238, 217, 0.2) 0%, rgba(255, 217, 189, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--text-dark), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-primary {
    background-color: var(--pink);
    color: white;
    font-size: 1.1rem;
    padding: 14px 32px;
}

.btn-primary:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 154, 162, 0.4);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rabbit-img {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    /* Optional if using a square img */
}

/* Blob Background */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--mint);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    opacity: 0.5;
    animation: blob-bounce 10s infinite ease-in-out;
}

@keyframes blob-bounce {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(20px, -30px) rotate(10deg);
    }

    66% {
        border-radius: 30% 70% 50% 50% / 30% 60% 40% 70%;
        transform: translate(-20px, 20px) rotate(-10deg);
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--light-green);
    border-radius: 2px;
}

.section-header.center .underline {
    margin: 0 auto;
}

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

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--mint);
}

.icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon.peach {
    background: var(--peach);
    color: var(--text-dark);
}

.icon.pink {
    background: var(--pink);
    color: white;
}

.icon.green {
    background: var(--light-green);
    color: var(--text-dark);
}

.mission-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-card p {
    color: var(--text-light);
}

/* Work */
.work-section {
    background-color: white;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.work-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.work-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card-image-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

/* Placeholders for work images - using CSS gradients */
.placeholder-mint {
    background: linear-gradient(120deg, var(--mint), var(--light-green));
}

.placeholder-pink {
    background: linear-gradient(120deg, var(--pink), var(--peach));
}

.placeholder-peach {
    background: linear-gradient(120deg, var(--peach), var(--mint));
}

.card-content {
    padding: 30px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    background: white;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.work-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.work-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

footer .logo {
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

footer p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--pink);
    opacity: 1;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    nav ul {
        margin-top: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .blob {
        width: 300px;
        height: 300px;
    }
}

/* Subpage Hero */
.hero-small {
    margin-top: 80px;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
}

.hero-content-small {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content-small h1 {
    font-size: 4rem;
    color: var(--text-dark);
}

.hero-content-small p {
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 20px auto 0;
}