/*
Theme Name: RCCBlue Reptiles Child Theme
Theme URI: https://rccblue.com
Description: Custom child theme for RCCBlue Reptiles - showcasing snakes and reptiles with style
Author: Chris
Template: inspiro
Version: 1.0.0
*/

/* Import parent theme styles */
@import url('../inspiro/style.css');

/* Custom Color Palette - Earthy reptile tones */
:root {
    --primary-green: #2d5016;
    --accent-brown: #8b6f47;
    --light-sand: #f4f1e8;
    --dark-scale: #1a1a1a;
    --highlight-gold: #d4af37;
}

/* Global Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-scale);
    background-color: var(--light-sand);
}

/* Header Styling */
.site-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-brown) 100%);
    padding: 20px 0;
}

.site-title a {
    color: white !important;
    font-weight: 700;
    font-size: 2em;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(45, 80, 22, 0.7), rgba(45, 80, 22, 0.7)),
                url('images/hero-bg.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Reptile Grid */
.reptile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reptile-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reptile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.reptile-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.reptile-info {
    padding: 20px;
}

.reptile-name {
    font-size: 1.8em;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.reptile-species {
    color: var(--accent-brown);
    font-size: 1.1em;
    font-style: italic;
}

.reptile-badge {
    display: inline-block;
    background: var(--highlight-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-top: 10px;
}

/* Individual Reptile Profile Page */
.reptile-profile {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.profile-details {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.detail-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-green);
    width: 150px;
}

.detail-value {
    color: var(--dark-scale);
}

/* Care Guide Styling */
.care-guide {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.care-guide h2 {
    color: var(--primary-green);
    border-bottom: 3px solid var(--highlight-gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reptile-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 2em;
    }
    
    .detail-row {
        flex-direction: column;
    }
    
    .detail-label {
        width: 100%;
        margin-bottom: 5px;
    }
}
