/* ========================================
   CAMPING GEAR RENTAL - MAIN STYLES
   ======================================== */

/* CSS Variables - Color Palette */
:root {
    --primary-green: #2d6a3e;
    --secondary-brown: #8b5a3c;
    --accent-orange: #d2691e;
    --neutral-beige: #f5f5dc;
    --dark-forest: #1a472a;
    
    /* Light/Dark Shades */
    --light-green: #4a9960;
    --light-brown: #a67c52;
    --light-orange: #deb887;
    --dark-beige: #e6e6cd;
    --deep-forest: #0f2419;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --line-height-base: 1.6;
}

/* Base Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-forest);
}

/* Conservative Font Sizes */
.navbar-brand {
    font-size: 1.25rem !important;
    font-weight: 600;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header & Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    color: white !important;
    font-weight: 600;
}

.navbar-nav .nav-link {
  font-size: 10px;
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--light-orange) !important;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--neutral-beige);
    padding: 0.5rem 0;
    margin-top: 76px;
}

.breadcrumb {
    margin: 0;
    background: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-brown));
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../VIR_images/hero-camping.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-top: 1rem;
}

/* Feature Cards */
.feature-card, .feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover, .feature-item:hover {
    transform: translateY(-3px);
}

.feature-card i, .feature-item i {
    color: var(--primary-green);
}

/* Price Cards */
.price-card {
    background: white;
    border: 2px solid var(--neutral-beige);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.price-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--neutral-beige);
}

.price-card .price {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 700;
}

/* Team Members */
.team-member {
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-green);
}

/* Reviews Slider */
.reviews-swiper {
    padding: 2rem 0;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid var(--neutral-beige);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(45, 106, 62, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-forest), var(--primary-green));
    transform: translateY(-2px);
}

/* Gallery */
.gallery-img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.blog-link:hover {
    color: var(--accent-orange);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background: white;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-green);
}

/* Process Steps */
.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Footer */
.footer {
    background: var(--dark-forest) !important;
    color: white;
}

.footer a {
    color: var(--light-orange);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

/* FAQ Accordion */
.accordion-button {
    background: var(--neutral-beige);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: white;
}

/* Space Page */
#space {
    min-height: calc(100vh - 200px);
    background: var(--neutral-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Sections */
.bg-light {
    background: var(--neutral-beige) !important;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-green) !important;
}

.bg-primary {
    background: var(--primary-green) !important;
}

/* Additional Page Styles */
.guide-item, .weather-guide, .group-guide, .activity-guide, .budget-guide,
.case-study-card, .career-card, .core-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.guide-item:hover, .weather-guide:hover, .group-guide:hover, 
.activity-guide:hover, .budget-guide:hover, .case-study-card:hover,
.career-card:hover, .core-info-card:hover {
    transform: translateY(-3px);
}

.case-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Contact Info Icons */
.contact-info i {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}/* CAMPING GEAR RENTAL - MAIN STYLES */
:root {
    --primary-green: #2d6a3e;
    --secondary-brown: #8b5a3c;
    --accent-orange: #d2691e;
    --neutral-beige: #f5f5dc;
    --dark-forest: #1a472a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-forest);
}
