/* Indoor Plant Wall Installations Template - Main Styles */

:root {
  /* Pastel color palette for plant theme */
  --primary-green: #89b369;
  --primary-sage: #b2d3ad;
  --primary-mint: #cff2d2;
  --primary-cream: #fcfcf7;
  --primary-earth: #87785d;
  
  /* Light/dark shades */
  --light-green: #a1c595;
  --dark-green: #5a8b4a;
  --light-sage: #c9e9bc;
  --dark-sage: #91b67d;
  --light-mint: #bee2b8;
  --dark-mint: #bfeac6;
  --light-cream: #fafaf5;
  --dark-cream: #d5d1a6;
  --light-earth: #b39a70;
  --dark-earth: #6e664e;
  
  /* Typography */
  --bs-font-sans-serif: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --bs-font-size-base: 0.95rem;
  --bs-line-height-base: 1.6;
}

/* Reset and base styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--bs-font-sans-serif);
  font-size: var(--bs-font-size-base);
  line-height: var(--bs-line-height-base);
  color: var(--dark-earth);
  background-color: var(--light-cream);
}

/* Conservative typography */
h1 { font-size: 2rem; font-weight: 600; }
h2 { font-size: 1.6rem; font-weight: 500; }
h3 { font-size: 1.3rem; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }
h5 { font-size: 1rem; font-weight: 500; }
h6 { font-size: 0.9rem; font-weight: 500; }

.navbar-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--primary-green);
}

/* Header styling */
.navbar {
  background-color: var(--primary-cream);
  padding: 0.75rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-nav .nav-link {
  color: var(--dark-earth);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-mint) 0%, var(--primary-cream) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--light-sage);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

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

/* Card styling */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Services styling */
.services-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.services-card .card-img-top {
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
}

.price-tag {
  background: var(--primary-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Features section */
.features-item {
  text-align: center;
  padding: 2rem 1rem;
}

.features-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Team section */
.team-card {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-mint);
}

/* Reviews section */
.review-card {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-sage);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

/* Process steps */
.process-step {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* FAQ styling */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--primary-sage);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--dark-earth);
  margin: 0;
}

/* Contact form */
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(121, 152, 96, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

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

.footer h5 {
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: var(--primary-mint);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
}

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

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

/* Blog section */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-cream);
}

.breadcrumb-image {
  height: 30px;
  width: auto;
}

/* Animations respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* Utilities */
.text-primary-green { color: var(--primary-green); }
.bg-primary-green { background-color: var(--primary-green); }
.text-sage { color: var(--primary-sage); }
.bg-sage { background-color: var(--primary-sage); }
.text-mint { color: var(--primary-mint); }
.bg-mint { background-color: var(--primary-mint); } 


/* 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;
    }
}
