/* California Jeeper - Custom Styles */

:root {
    --primary-color: #0052CC;
    --secondary-color: #FF3300;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
}

/* Logo Styling */
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}

/* Navigation */
.uk-navbar-container {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px);
}

.uk-navbar-sticky {
    background: rgba(0, 0, 0, 0.95) !important;
}

.uk-navbar-nav > li > a {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    min-height: 650px;
}

.hero-title {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 900;
    letter-spacing: -1px;
}

.uk-text-lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Buttons */
.uk-button-danger {
    background-color: var(--secondary-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.uk-button-danger:hover {
    background-color: #cc2900;
}

.uk-button-primary {
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.uk-button-primary:hover {
    background-color: #0042a3;
}

/* Cards */
.uk-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uk-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.uk-card-title {
    color: var(--primary-color);
    font-weight: 700;
}

/* Sections */
.uk-section {
    padding: 80px 0;
}

.uk-section h2 {
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* Links */
a {
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer a {
    color: rgba(255,255,255,0.7);
}

footer a:hover {
    color: #fff;
}

/* Content Pages */
.content-page {
    padding: 60px 0;
}

.content-page h1 {
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.content-page h2 {
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.content-page h3 {
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.content-page img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-page ul {
    margin: 20px 0;
}

.content-page ul li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }

    .uk-text-lead {
        font-size: 1.2rem;
    }

    .uk-section {
        padding: 50px 0;
    }
}

/* Trail Rating Badges */
.trail-rating {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-easy {
    background: #28a745;
    color: #fff;
}

.rating-moderate {
    background: #ffc107;
    color: #000;
}

.rating-difficult {
    background: #fd7e14;
    color: #fff;
}

.rating-extreme {
    background: #dc3545;
    color: #fff;
}

/* Image Captions */
.image-caption {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    font-size: 0.9rem;
}
