/* ==========================================
   BOOTSTRAP 5 BEEKEEPING COOPERATIVE THEME
   ========================================== */

:root {
  /* Primary Color Palette - Beekeeping Theme */
  --honey-gold: #ffb450;
  --honey-gold-light: #ecbd9b;
  --honey-gold-dark: #f38e49;
  
  --sage-green: #b0c8a2;
  --sage-green-light: #abb0a6;
  --sage-green-dark: #8fa579;
  
  --cream: #e6e3d0;
  --cream-light: #FAFAF2;
  --cream-dark: #f2efc7;
  
  --amber: #ffbc00;
  --amber-light: #ffd925;
  --amber-dark: #e0b105;
  
  --lavender: #cfd0e1;
  --lavender-light: #F0F0FC;
  --lavender-dark: #e0dbfa;
  
  /* Typography Scale - Conservative Sizes */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --content-max-width: 1200px;
}

/* ==========================================
   GLOBAL STYLES
   ========================================== */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #282525;
  background-color: var(--cream-light);
}

/* Conservative Typography */
h1 {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: var(--sage-green-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--sage-green-dark);
  margin-bottom: 0.96rem;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 500;
  color: var(--sage-green);
  margin-bottom: 0.87rem;
}

p {
  font-size: var(--font-size-base);
  color: #403d3d;
  margin-bottom: 1rem;
}

/* ==========================================
   HEADER STYLES
   ========================================== */

.navbar {
  background-color: var(--cream);
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--sage-green-dark);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--sage-green);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--honey-gold-dark);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--lavender-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--honey-gold-light);
  transform: rotate(15deg);
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 176px;
}

.hero-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--sage-green-dark);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--honey-gold-dark);
  margin-bottom: 1.70rem;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: #565656;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 39px rgba(0,0,0,0.1);
}

/* ==========================================
   SECTION STYLES
   ========================================== */

.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  font-size: var(--font-size-2xl);
  color: var(--sage-green-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--honey-gold-dark);
  margin-bottom: 0.96rem;
}

.section-description {
  text-align: center;
  font-size: var(--font-size-base);
  color: #757070;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.service-card {
  background: var(--cream);
  border-radius: 110px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 7px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 210px rgba(0,0,0,0.12);
}

.service-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--honey-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--sage-green-dark);
  margin-bottom: 1rem;
}

.service-description {
  font-size: var(--font-size-base);
  color: #646262;
  margin-bottom: 1.70rem;
}

.service-price {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--amber-dark);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.feature-card {
  background: var(--lavender-light);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--sage-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--sage-green-dark);
  margin-bottom: 0.94rem;
}

.feature-description {
  font-size: var(--font-size-small);
  color: #6f6f6f;
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.team-card {
  background: var(--cream);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--honey-gold-light);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--sage-green-dark);
  margin-bottom: 0.59rem;
}

.team-role {
  font-size: var(--font-size-base);
  color: var(--honey-gold-dark);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonial-card {
  background: var(--cream);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.testimonial-text {
  font-size: var(--font-size-base);
  color: #514b4c;
  margin-bottom: 1.68rem;
  font-style: italic;
}

.testimonial-author {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--sage-green-dark);
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 10px rgba(0,0,0,0.05);
}

.faq-question {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--sage-green-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  font-size: var(--font-size-base);
  color: #5a5454;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-form {
  background: var(--cream);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-control {
  border: 2px solid var(--lavender-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--honey-gold);
  box-shadow: 0 0 0 0.2rem rgba(252, 169, 110, 0.25);
}

.btn-primary {
  background-color: var(--honey-gold);
  border-color: var(--honey-gold);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--honey-gold-dark);
  border-color: var(--honey-gold-dark);
}

.contact-info {
  background: var(--lavender-light);
  border-radius: 10px;
  padding: 2rem;
}

.contact-info h4 {
  color: var(--sage-green-dark);
  margin-bottom: 1.61rem;
}

.contact-info p {
  color: #7b7576;
  margin-bottom: 1rem;
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.footer {
  background-color: var(--sage-green-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--honey-gold-light);
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--honey-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* ==========================================
   PREFERS REDUCED MOTION
   ========================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================
   GALLERY STYLES
   ========================================== */

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ==========================================
   BLOG STYLES
   ========================================== */

.blog-card {
  background: var(--cream);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: var(--lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--sage-green-dark);
  margin-bottom: 1rem;
}

.blog-excerpt {
  font-size: var(--font-size-base);
  color: #706f6f;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--honey-gold-dark);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--honey-gold);
}

/* ==========================================
   ADDITIONAL PAGES STYLES
   ========================================== */

.page-section {
  padding: 3rem 0;
}

.page-section:nth-child(even) {
  background-color: var(--cream-light);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb-container {
  padding: 1rem 0;
  background: var(--cream);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-honey {
  color: var(--honey-gold);
}

.text-sage {
  color: var(--sage-green);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-lavender {
  background-color: var(--lavender-light);
}

.shadow-soft {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.rounded-custom {
  border-radius: 15px;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
