/* Urban Rooftop Gardens - Main CSS */

/* Color Palette */
:root {
  /* Primary Colors */
  --primary-green: #2d5016;
  --secondary-sage: #87a96b;
  --accent-terracotta: #c17767;
  --neutral-sand: #f4f1e8;
  --deep-earth: #3e2723;
  
  /* Light/Dark Shades */
  --light-green: #a4c686;
  --dark-green: #1a3009;
  --light-sage: #b8c99c;
  --dark-sage: #5d7249;
  --light-terracotta: #d49a8a;
  --dark-terracotta: #9f5d4d;
  --light-sand: #f9f7f2;
  --dark-sand: #e6e0d1;
  --light-earth: #5d4037;
  --dark-earth: #2e1a17;
}

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--deep-earth);
  background-color: var(--light-sand);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--primary-green);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

.lead {
  font-size: 1.1rem;
  font-weight: 400;
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-green);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--deep-earth);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--neutral-sand) 0%, var(--light-sand) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 2rem 0;
    padding-top: 275px;
}

.hero-shapes {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: var(--light-sage);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-shapes::before {
  content: '';
  position: absolute;
  top: 50px;
  left: -100px;
  width: 150px;
  height: 150px;
  background: var(--light-terracotta);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
  font-weight: 500;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

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

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

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

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

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

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

/* Feature Cards */
.feature-card {
  padding: 2rem;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

/* Service Cards */
.service-card {
  transition: all 0.3s ease;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-align: center;
  margin-top: 1rem;
}

/* Team Members */
.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid var(--light-sage);
}

/* Pricing Cards */
.pricing-card {
  position: relative;
}

.pricing-card.border-primary {
  border: 2px solid var(--primary-green);
  transform: scale(1.05);
}

.price-display {
  background: linear-gradient(135deg, var(--light-sage), var(--secondary-sage));
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
}

/* Process Steps */
.process-step {
  padding: 2rem;
}

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

/* Timeline */
.timeline-item {
  padding: 1.5rem;
  border-left: 3px solid var(--secondary-sage);
  margin-bottom: 2rem;
  position: relative;
}

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

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
}

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

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

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

/* Gallery */
#gallery img {
  border-radius: 10px;
  transition: all 0.3s ease;
}

#gallery img:hover {
  transform: scale(1.05);
}

/* Contact Info */
.contact-info i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-sage);
  margin: 0 auto;
}

/* Footer */
#footer {
  background-color: var(--deep-earth);
}

#footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--secondary-sage);
}

/* Breadcrumb */
.breadcrumb-section {
  margin-top: 76px;
}

.breadcrumb {
  background: none;
  padding: 0;
}

/* Additional Page Specific Styles */
.blog-card img {
  height: 200px;
  object-fit: cover;
}

.case-study-card img {
  height: 200px;
  object-fit: cover;
}

.career-card {
  border-left: 4px solid var(--secondary-sage);
}

.info-card i {
  color: var(--primary-green);
}

.service-area-card,
.quality-standard,
.emergency-service {
  padding: 1.5rem;
}

.maintenance-program {
  border-left: 4px solid var(--accent-terracotta);
}

.emergency-icon i,
.standard-icon i {
  margin-bottom: 1rem;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-green);
}

.bg-primary-custom {
  background-color: var(--primary-green);
}

.text-sage {
  color: var(--secondary-sage);
}

.bg-sage {
  background-color: var(--secondary-sage);
}

/* Stars for Reviews */
.stars {
  color: #ffc107;
}

/* Review Cards */
.review-card {
  border-left: 4px solid var(--accent-terracotta);
}

/* Feature Items */
.feature-item {
  padding: 1.5rem;
}

.feature-item i {
  margin-bottom: 1rem;
}

/* Section Spacing */
section {
  position: relative;
}

/* Background Variations */
.bg-light {
  background-color: var(--neutral-sand);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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


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