/* ===== HYDROPONIC GARDEN UNITS TEMPLATE - MAIN STYLES ===== */

/* Color Palette - 5 Primary Colors + Shades */
:root {
  --primary-green: #A8E6CF;
  --primary-blue: #88D8F0;
  --primary-coral: #FFB3BA;
  --primary-yellow: #FFDFBA;
  --primary-purple: #D4B3FF;
  
  --light-green: #D4F4E2;
  --light-blue: #C4E8F5;
  --light-coral: #FFD9DC;
  --light-yellow: #FFEFDD;
  --light-purple: #EAD9FF;
  
  --dark-green: #7DD3B0;
  --dark-blue: #5FC9E8;
  --dark-coral: #FF9CA3;
  --dark-yellow: #FFD09D;
  --dark-purple: #C29CFF;
  
  --white: #FFFFFF;
  --black: #2C3E50;
  --gray-light: #F8F9FA;
  --gray-medium: #DEE2E6;
  --gray-dark: #6C757D;
}

/* Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
}

.navbar-brand { font-size: 1.1rem; font-weight: 600; }
h1 { font-size: 2.2rem; font-weight: 700; line-height: 1.3; }
h2 { font-size: 1.8rem; font-weight: 600; line-height: 1.4; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
p { font-size: 1rem; margin-bottom: 1rem; }

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

/* Header */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
  padding: 1rem 0;
}

.navbar-brand { color: var(--primary-green); }
.navbar-nav .nav-link {
  color: var(--black);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover { color: var(--primary-green); }

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

.hero-decorative {
  position: absolute;
  top: 10%; right: 10%;
  width: 150px; height: 150px;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

/* Sections */
.section { padding: 80px 0; }
.section-title { color: var(--black); margin-bottom: 1rem; }
.section-subtitle { color: var(--primary-green); font-size: 1.1rem; margin-bottom: 0.5rem; }
.section-desc { color: var(--gray-dark); max-width: 600px; margin: 0 auto 3rem; }

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}
.card-img-top { height: 200px; object-fit: cover; }
.card-body { padding: 2rem; }

/* Service Cards */
.service-card { background: var(--white); text-align: center; height: 100%; }
.service-icon { color: var(--primary-green); font-size: 3rem; margin-bottom: 1.5rem; }
.service-price { color: var(--primary-blue); font-size: 2rem; font-weight: 700; margin-top: 1rem; }

/* Features */
.features-section { background: var(--gray-light); }
.feature-item { text-align: center; padding: 2rem 1rem; }
.feature-icon { color: var(--primary-coral); font-size: 2.5rem; margin-bottom: 1rem; }

/* Price Plans */
.price-card { text-align: center; padding: 3rem 2rem; background: var(--white); }
.price-card.featured { background: var(--light-green); transform: scale(1.05); z-index: 2; }
.price { font-size: 3rem; font-weight: 700; color: var(--primary-green); margin: 1rem 0; }

/* Team */
.team-member { text-align: center; padding: 1rem; }
.team-photo {
  width: 150px; height: 150px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 1.5rem; display: block;
  border: 4px solid var(--primary-purple);
}

/* Contact Form */
.contact-section { background: var(--light-blue); }
.form-control {
  border: 2px solid var(--gray-medium);
  border-radius: 10px;
  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(168, 230, 207, 0.25);
}

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

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 1rem;
}
.footer h5 { color: var(--primary-green); margin-bottom: 1.5rem; }
.footer a { color: var(--gray-medium); text-decoration: none; transition: color 0.3s ease; }
.footer a:hover { color: var(--primary-green); }

/* Utility Classes */
.text-primary-green { color: var(--primary-green); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-blue { background-color: var(--light-blue); } 

.hero-content {
    padding-top: 125px;
}


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
