/* ========================================
   Local Heritage Recipe Blog Monetization Agency
   Main CSS - Bootstrap 5 Based Template
   ======================================== */

/* Custom Color Palette - Pastel High-Contrast Colors */
:root {
  /* Primary Colors */
  --primary-warm: #d4a574;          /* Warm golden brown */
  --primary-sage: #8ba888;          /* Sage green */
  --primary-cream: #f5f1e8;         /* Cream */
  --primary-terracotta: #c17767;    /* Terracotta */
  --primary-lavender: #b8a9c9;      /* Lavender */
  
  /* Light Shades */
  --light-warm: #f2e4d0;
  --light-sage: #d1e7ce;
  --light-cream: #faf8f3;
  --light-terracotta: #e5c5bd;
  --light-lavender: #e2d9ec;
  
  /* Dark Shades */
  --dark-warm: #9b7a51;
  --dark-sage: #6b8568;
  --dark-cream: #c4b8a0;
  --dark-terracotta: #8b5a4d;
  --dark-lavender: #8b7a9b;
  
  /* System Colors */
  --text-primary: #2d2d2d;
  --text-secondary: #5a5a5a;
  --bg-light: #ffffff;
  --border-color: #e0e0e0;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

/* Conservative Typography */
h1 { font-size: 2.2rem; font-weight: 600; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.3rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

.navbar-brand { font-size: 1.4rem !important; }

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

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

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

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  top: 10%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  border-radius: 50% 30% 70% 40%;
}

.hero-shape-2 {
  bottom: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: var(--primary-terracotta);
  border-radius: 30% 70% 40% 50%;
}

/* Navigation */
.navbar {
  background: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-warm);
  font-weight: 600;
}

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

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

/* Cards and Service Items */
.service-card,
.feature-card,
.price-card,
.team-card,
.review-card,
.case-card,
.process-card,
.timeline-card,
.career-card,
.core-card,
.faq-card,
.blog-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.service-card:hover,
.feature-card:hover,
.price-card:hover,
.team-card:hover,
.review-card:hover,
.case-card:hover,
.process-card:hover,
.timeline-card:hover,
.career-card:hover,
.core-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Service Section */
.services-section {
  background: var(--light-cream);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-warm);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-terracotta);
}

/* Team Section */
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-cream);
}

/* Reviews Section */
.reviews-section {
  background: var(--light-sage);
}

.review-stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

/* Process Section */
.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-warm);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 1rem;
}

/* FAQ Section - Static Cards Only */
.faq-section {
  background: var(--light-lavender);
}

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

/* Contact Form */
.contact-section {
  background: var(--light-cream);
}

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

.form-control:focus {
  border-color: var(--primary-warm);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.btn-primary {
  background: var(--primary-warm);
  border-color: var(--primary-warm);
  border-radius: 8px;
  padding: 0.8rem 2rem;
  font-weight: 500;
}

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

/* Footer - High Contrast, No Gradients */
.footer {
  background: var(--text-primary);
  color: var(--bg-light);
  padding: 3rem 0 1rem;
}

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

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

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

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
}

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

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

/* Utilities */
.text-primary-custom { color: var(--primary-warm); }
.text-secondary-custom { color: var(--primary-sage); }
.bg-primary-custom { background-color: var(--primary-warm); }
.bg-secondary-custom { background-color: var(--primary-sage); }

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

/* Additional Page Styles */
.add-page-section {
  padding: 3rem 0;
}

.add-page-section:nth-child(even) {
  background: var(--light-cream);
}

.space-content {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-cream);
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

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

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
