/* ===== ARTISAN BREAD BAKERS HUB - MAIN STYLES ===== */

/* Color Palette - Artisan Bread Theme */
:root {
  /* Primary Colors */
  --wheat-gold: #DEB887;
  --crust-brown: #8B4513;
  --flour-white: #FDF5E6;
  --grain-beige: #F5E6D3;
  --yeast-cream: #FFEFD5;
  
  /* Light/Dark Variations */
  --wheat-gold-light: #E8D4A0;
  --wheat-gold-dark: #C4A373;
  --crust-brown-light: #A0522D;
  --crust-brown-dark: #654321;
  --flour-white-dark: #F0E68C;
  
  /* Typography */
  --font-primary: 'Georgia', serif;
  --font-secondary: 'Arial', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --content-max-width: 1200px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--crust-brown);
  background-color: var(--flour-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--crust-brown-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

/* Navigation */
.navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--crust-brown-dark);
}

.navbar {
  background-color: var(--flour-white);
  border-bottom: 2px solid var(--wheat-gold);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--crust-brown);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--crust-brown-dark);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background-color: var(--wheat-gold);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 150px;
  height: 150px;
  background-color: var(--crust-brown-light);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

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

/* Section Styling */
.section {
  padding: var(--section-padding);
}

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

.section-subtitle {
  color: var(--wheat-gold-dark);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--flour-white);
  margin-bottom: 2rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--crust-brown-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--crust-brown);
  margin-bottom: 1rem;
}

/* Services */
.service-card {
  background-color: var(--grain-beige);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--crust-brown-dark);
  margin-top: 1rem;
}

/* Features */
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--wheat-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--crust-brown-dark);
  font-size: 1.5rem;
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

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

.team-role {
  color: var(--wheat-gold-dark);
  font-style: italic;
}

/* Reviews */
.review-card {
  background-color: var(--yeast-cream);
  border-left: 4px solid var(--wheat-gold);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

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

/* FAQ */
.faq-card {
  background-color: var(--flour-white);
  border: 1px solid var(--grain-beige);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: bold;
  color: var(--crust-brown-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--crust-brown);
}

/* Contact Form */
.form-control {
  border: 2px solid var(--grain-beige);
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

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

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

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

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

/* Footer */
.footer {
  background-color: var(--crust-brown-dark);
  color: var(--flour-white);
  padding: 3rem 0 1rem;
}

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

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

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

.footer-bottom {
  border-top: 1px solid var(--crust-brown);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--wheat-gold);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--grain-beige);
  border-radius: 15px;
  width: 45%;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
}

.timeline-item:nth-child(even) {
  margin-left: 55%;
}

/* Breadcrumbs */
.breadcrumb {
  background-color: var(--grain-beige);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.breadcrumb img {
  width: 20px;
  height: 20px;
}

/* Responsive Design Helpers */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 60px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero-section {
    text-align: center;
  }
}

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

/* Utility Classes */
.bg-wheat { background-color: var(--wheat-gold); }
.bg-crust { background-color: var(--crust-brown); }
.bg-flour { background-color: var(--flour-white); }
.bg-grain { background-color: var(--grain-beige); }
.bg-yeast { background-color: var(--yeast-cream); }

.text-wheat { color: var(--wheat-gold); }
.text-crust { color: var(--crust-brown); }
.text-flour { color: var(--flour-white); }
.text-grain { color: var(--grain-beige); }
.text-yeast { color: var(--yeast-cream); }



/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

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