:root {
    /* Primary Color Palette */
    --primary-color: #d2691e;
    --primary-light: #ff8c42;
    --primary-dark: #8b4513;
    --secondary-color: #2c5530;
    --secondary-light: #4a7c59;
    --secondary-dark: #1a3d1f;
    --accent-color: #ff6b35;
    --accent-light: #ff8c69;
    --accent-dark: #cc5429;
    --neutral-color: #2d3436;
    --neutral-light: #636e72;
    --neutral-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-dark: #2d3436;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    
    /* Conservative Font Sizes */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-h1: 2rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.125rem;
    --font-size-h6: 1rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: 'Arial', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1 { font-size: var(--font-size-h1); font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: var(--font-size-h2); font-weight: 600; margin-bottom: 0.75rem; }
h3 { font-size: var(--font-size-h3); font-weight: 600; margin-bottom: 0.5rem; }
h4 { font-size: var(--font-size-h4); font-weight: 500; margin-bottom: 0.5rem; }
h5 { font-size: var(--font-size-h5); font-weight: 500; margin-bottom: 0.25rem; }
h6 { font-size: var(--font-size-h6); font-weight: 500; margin-bottom: 0.25rem; }

p { margin-bottom: 1rem; }

/* Header */
.navbar {
    background: var(--gradient-secondary) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: var(--font-size-lg) !important;
    font-weight: 700;
    color: var(--text-light) !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../FLA_images/hero-paintball.webp') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: var(--font-size-h3);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-section p {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Section Spacing */
section {
    padding: 60px 0;
}

section.bg-light {
    background-color: var(--bg-light);
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
    background: var(--text-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-card .card-body {
  overflow-x: hidden;
    padding: 1.5rem;
}

.service-card h4 {
    color: var(--secondary-color);
    font-size: var(--font-size-h4);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--neutral-color);
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    color: var(--neutral-light);
    font-size: var(--font-size-sm);
    padding: 0.25rem 0;
}

.service-card .price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
}

/* Feature Items */
.feature-item {
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    background: var(--text-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-item i {
    color: var(--primary-color);
}

/* Price Cards */
.price-card {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.price-card.featured {
    background: var(--gradient-primary);
    color: var(--text-light);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.price-card h4 {
    font-size: var(--font-size-h4);
    margin-bottom: 1rem;
}

.price-card p {
    font-size: var(--font-size-sm);
    margin-bottom: 1.5rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.price-card ul li {
    padding: 0.5rem 0;
    font-size: var(--font-size-sm);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-card .price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--accent-color);
}

.price-card.featured .price {
    color: var(--text-light);
}

/* Team Members */
.team-member {
    padding: 1rem;
}

.team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.team-member h5 {
    font-size: var(--font-size-h5);
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.team-member p {
    font-size: var(--font-size-sm);
    color: var(--neutral-light);
    margin-bottom: 0;
}

/* Reviews Swiper */
.reviewsSwiper {
    padding: 2rem 0;
}

.review-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card p {
    font-style: italic;
    font-size: var(--font-size-base);
    margin-bottom: 1.5rem;
    color: var(--neutral-color);
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.review-card h5 {
    font-size: var(--font-size-h5);
    color: var(--primary-color);
    font-weight: 600;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Blog Section */
.blog-card {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-card .card-body {
  overflow-x: hidden;
    padding: 1.5rem;
}

.blog-card h4 {
    color: var(--secondary-color);
    font-size: var(--font-size-h4);
    margin-bottom: 0.75rem;
}

.blog-card p {
    color: var(--neutral-color);
    font-size: var(--font-size-sm);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.blog-card .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* FAQ Accordion */
.accordion-button {
    background: var(--bg-light);
    border: none;
    font-weight: 500;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--text-light);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
  overflow-x: hidden;
    background: var(--text-light);
}

/* Contact Form */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(210, 105, 30, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--gradient-accent);
}

/* Footer */
footer {
    background: var(--neutral-dark) !important;
    color: var(--text-light);
}

footer h5 {
    font-size: var(--font-size-h5);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

footer p {
    font-size: var(--font-size-sm);
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    padding: 0.25rem 0;
}

footer i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item img {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
} 