:root {
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --accent: #3498db;
    --teaming: #1f94a8;
    --dark: #2d3436;
    --gray: #636e72;
    --light: #fdfdfd;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --border-radius: 20px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav ul a {
    font-weight: 600;
    color: var(--gray);
}

nav ul a:hover, nav ul a.active {
    color: var(--primary);
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/img/hero_bg.jpg') center/cover;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    gap: 0.75rem;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }

.btn-teaming { background: var(--teaming); color: white; }
.btn-teaming:hover { background: #167d8d; transform: translateY(-3px); }

/* Sticky Donation Button (Mobile) */
.sticky-donate {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 999;
    padding: 1rem;
    border-radius: 50%;
    background: var(--teaming);
    color: white;
    box-shadow: 0 10px 20px rgba(31, 148, 168, 0.4);
    display: flex;
}

@media (min-width: 769px) {
    .sticky-donate {
        bottom: 3rem;
        right: 3rem;
        padding: 1.25rem 2rem;
        border-radius: 50px;
    }
    .sticky-donate span { display: inline; margin-left: 0.5rem; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-container nav { display: none; }
    .sticky-donate span { display: none; }
}

/* Section Common */
section { padding: 5rem 0; }
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 { font-size: 2.5rem; font-weight: 800; }
.section-title p { color: var(--gray); font-size: 1.1rem; }

/* Animals Grid */
.animal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.animal-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.animal-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.animal-info { padding: 1.5rem; }
.animal-info h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.animal-info .badge {
    background: #f1f2f6;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
