/* Recycled Plastic Outdoor Furniture Brand - Main Styles */
/* Bootstrap 5 Integration - No Core Overrides */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --eco-green: #7BC142;
  --ocean-blue: #4A90BA;
  --earth-brown: #8B7355;
  --sunset-coral: #F4A261;
  --sky-gray: #E9ECEF;
  
  /* Light/Dark Shades */
  --eco-green-light: #A8D470;
  --eco-green-dark: #5A8D32;
  --ocean-blue-light: #6FA8C7;
  --ocean-blue-dark: #356B8A;
  --earth-brown-light: #A68E73;
  --earth-brown-dark: #6B5A44;
  --sunset-coral-light: #F7B682;
  --sunset-coral-dark: #E68B3A;
  --sky-gray-light: #F8F9FA;
  --sky-gray-dark: #CED4DA;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: #212529;
}

/* Conservative Heading Sizes */
h1 { font-size: 2rem; font-weight: var(--font-weight-bold); color: var(--earth-brown-dark); }
h2 { font-size: 1.75rem; font-weight: var(--font-weight-bold); color: var(--ocean-blue-dark); }
h3 { font-size: 1.5rem; font-weight: var(--font-weight-medium); color: var(--eco-green-dark); }
h4 { font-size: 1.25rem; font-weight: var(--font-weight-medium); }
h5 { font-size: 1.1rem; font-weight: var(--font-weight-medium); }

/* Conservative Brand Logo Size */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--eco-green) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sky-gray-light) 0%, var(--ocean-blue-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decorative {
  position: absolute;
  background: var(--eco-green-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 15%;
}

.hero-decorative:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  background: var(--sunset-coral-light);
}

/* Services Cards */
.service-card {
  background: white;
  border: 2px solid var(--sky-gray);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  border-color: var(--eco-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(123, 193, 66, 0.15);
}

.service-price {
  color: var(--sunset-coral);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
}

/* Feature Items */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--sky-gray-light);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.feature-icon {
  color: var(--eco-green);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  height: 250px;
  background: var(--sky-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-brown);
}

/* Review Cards */
.review-card {
  background: white;
  border-left: 4px solid var(--ocean-blue);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* FAQ Cards */
.faq-card {
  background: var(--sky-gray-light);
  border: 1px solid var(--sky-gray);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  color: var(--earth-brown-dark);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #6c757d;
}

/* Process Steps */
.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  background: var(--eco-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 0 auto 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control:focus {
  border-color: var(--eco-green);
  box-shadow: 0 0 0 0.2rem rgba(123, 193, 66, 0.25);
}

.btn-primary {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
  font-weight: var(--font-weight-medium);
}

.btn-primary:hover {
  background-color: var(--eco-green-dark);
  border-color: var(--eco-green-dark);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--earth-brown-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--eco-green-light);
}

.footer a {
  color: var(--sky-gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--eco-green-light);
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--sky-gray-light);
}

/* Utility Classes */
.text-eco { color: var(--eco-green); }
.text-ocean { color: var(--ocean-blue); }
.text-earth { color: var(--earth-brown); }
.text-sunset { color: var(--sunset-coral); }

.bg-eco { background-color: var(--eco-green); }
.bg-ocean { background-color: var(--ocean-blue); }
.bg-earth { background-color: var(--earth-brown); }
.bg-sunset { background-color: var(--sunset-coral); }

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.hero-section h1 {
    padding-top: 150px;
}


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
