/* Artisan Bread Bakers Hub - Main Styles */

:root {
  /* Primary Color Palette - Artisan Bread Theme */
  --primary-wheat: #F5E6A8;
  --primary-crust: #8B4513;
  --primary-flour: #FFF8DC;
  --primary-grain: #D2B48C;
  --primary-sourdough: #DEB887;
  
  /* Light Variations */
  --light-wheat: #FAF0C4;
  --light-crust: #A0522D;
  --light-flour: #FFFBF0;
  --light-grain: #E6D3B7;
  --light-sourdough: #F0DCA8;
  
  /* Dark Variations */
  --dark-wheat: #E0D088;
  --dark-crust: #654321;
  --dark-flour: #F0F0DC;
  --dark-grain: #BC9A6A;
  --dark-sourdough: #CD853F;
  
  /* Neutral Colors */
  --text-primary: #2C1810;
  --text-secondary: #5D4037;
  --text-muted: #8D6E63;
  --bg-light: #FEFCF9;
  --bg-dark: #3E2723;
  --border-color: #EFEBE9;
}

/* Typography - Conservative Sizing */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
    overflow-x: hidden;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-crust);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-crust);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-crust);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23F5E6A8" stroke-width="0.5" opacity="0.3"/></svg>') repeat;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

/* Services Section */
.services-section {
  background-color: var(--bg-light);
  padding: 4rem 0;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.15);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-crust);
  margin-top: 1rem;
}

/* About Section */
.about-section {
  background: linear-gradient(to right, var(--light-flour), white);
  padding: 4rem 0;
}

.feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-sourdough);
}

/* Team Section */
.team-section {
  background-color: var(--bg-light);
  padding: 4rem 0;
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
  background: var(--light-flour);
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  border-top: 3px solid var(--primary-sourdough);
}

.review-author {
  font-weight: 600;
  color: var(--dark-crust);
  margin-top: 1rem;
}

/* Process Section */
.process-section {
  background: white;
  padding: 4rem 0;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.process-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary-crust);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background: var(--light-grain);
  padding: 4rem 0;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-sourdough);
  box-shadow: 0 0 0 0.2rem rgba(222, 184, 135, 0.25);
}

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

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

/* FAQ Section */
.faq-section {
  background: white;
  padding: 4rem 0;
}

.faq-card {
  background: var(--light-flour);
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-crust);
  padding: 1.5rem;
  margin: 0;
  background: var(--primary-wheat);
  border-radius: 8px;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Blog Section */
.blog-section {
  background: var(--bg-light);
  padding: 4rem 0;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

/* Gallery Section */
.gallery-section {
  padding: 4rem 0;
  background: white;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--dark-grain);
  color: var(--light-flour);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--primary-wheat);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

/* Price Plan Section */
.priceplan-section {
  background: var(--light-flour);
  padding: 4rem 0;
}

.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 6px 25px rgba(139, 69, 19, 0.12);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border: 3px solid var(--primary-sourdough);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-crust);
}

/* Timeline Section */
.timeline-section {
  background: white;
  padding: 4rem 0;
}

.timeline-item {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-sourdough);
  background: var(--light-flour);
  border-radius: 0 8px 8px 0;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--light-grain);
  padding: 4rem 0;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  height: 100%;
  border-top: 3px solid var(--primary-crust);
}

/* Career Section */
.career-section {
  background: white;
  padding: 4rem 0;
}

.job-card {
  background: var(--light-flour);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-sourdough);
}

/* Case Study Section */
.casestudy-section {
  background: var(--bg-light);
  padding: 4rem 0;
}

.case-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

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

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

.border-primary-custom {
  border-color: var(--primary-sourdough);
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Animations - Conservative and Accessible */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
  }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }
}

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

/* Responsive adjustments handled in responsive.css */



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

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 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;
    }
}
