/* Jungle Tigers - Premium Design with Unique Nature/Jungle Color Palette */

:root {
    /* Unique Jungle/Nature Color Palette */
    --jungle-green-dark: #1a4d2e;
    --jungle-green-medium: #2d6a4f;
    --jungle-green-light: #40916c;
    --jungle-brown-dark: #5d4037;
    --jungle-brown-medium: #8d6e63;
    --jungle-brown-light: #a1887f;
    --earth-orange: #d2691e;
    --forest-olive: #6b8e23;
    --jungle-teal: #2d8484;
    --canopy-yellow: #d4af37;
    --text-dark: #1b1b1b;
    --text-light: #f5f5f5;
    --bg-cream: #f9f7f3;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-cream) 0%, #e8f5e9 100%);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--jungle-green-dark) 0%, var(--jungle-green-medium) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--canopy-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(212, 175, 55, 0.3);
    color: var(--canopy-yellow);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--jungle-green-medium) 0%, var(--jungle-brown-medium) 50%, var(--forest-olive) 100%);
    color: var(--text-light);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q25 30 50 50 T100 50" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="0.5"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-small {
    background: linear-gradient(135deg, var(--jungle-green-dark) 0%, var(--jungle-brown-dark) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.hero-small h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Main Content */
main {
    padding: 3rem 0;
}

.intro {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.intro h2 {
    color: var(--jungle-green-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--earth-orange);
    padding-bottom: 0.5rem;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.content {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content h2 {
    color: var(--jungle-green-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--earth-orange);
    padding-bottom: 0.5rem;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 1.5rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    background: linear-gradient(to bottom, white, var(--bg-cream));
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--jungle-green-dark) 0%, var(--jungle-brown-dark) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer p {
    margin: 0;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .nav-menu a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .intro h2,
    .content h2 {
        font-size: 1.5rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-brand {
        font-size: 1.2rem;
    }
    
    .intro,
    .content {
        padding: 1.5rem;
    }
}
