/* Artisan Bread Kits Store - Main Styles */

/* Color palette - Pastel high-contrast colors */
:root {
  --primary-wheat: #F5DEB3;
  --primary-brown: #8B4513;
  --primary-cream: #FFF8DC;
  --primary-golden: #DAA520;
  --primary-sage: #9CAF88;
  
  /* Light shades */
  --wheat-light: #FAF0E6;
  --brown-light: #D2B48C;
  --cream-light: #FFFEF7;
  --golden-light: #F0E68C;
  --sage-light: #C8D5B9;
  
  /* Dark shades */
  --wheat-dark: #DEB887;
  --brown-dark: #654321;
  --cream-dark: #F5F5DC;
  --golden-dark: #B8860B;
  --sage-dark: #6B8E5A;
}

/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--brown-dark);
  background-color: var(--cream-light);
    overflow-x: hidden;
}

/* Conservative font sizes */
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p { font-size: 1rem; }

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown-dark);
}

/* Section spacing */
section {
  padding: 4rem 0;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--wheat-light) 0%, var(--cream-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decorative-shape {
  position: absolute;
  background: var(--golden-light);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  background: var(--sage-light);
}

/* About Section */
#about {
  background-color: var(--wheat-light);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--golden-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--brown-dark);
}

/* Services Section */
#services {
  background-color: var(--cream-light);
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--wheat-dark);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--golden-dark);
}

/* Features Section */
#features {
  background-color: var(--sage-light);
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--sage-dark);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--cream-light);
}

.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 2px solid var(--wheat-dark);
  position: relative;
  height: 100%;
}

.price-card.featured {
  border-color: var(--golden-dark);
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--golden-dark);
}

/* Team Section */
#team {
  background-color: var(--wheat-light);
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--wheat-dark);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--sage-light);
  border: 3px solid var(--golden-light);
}

/* Reviews Section */
#reviews {
  background-color: var(--sage-light);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--golden-dark);
  height: 100%;
}

/* Case Studies Section */
#casestudy {
  background-color: var(--cream-light);
}

.case-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--wheat-dark);
  height: 100%;
}

/* Process Section */
#process {
  background-color: var(--wheat-light);
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--golden-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background-color: var(--sage-light);
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--brown-dark);
  margin-bottom: 2rem;
}

/* Career Section */
#career {
  background-color: var(--cream-light);
}

.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--wheat-dark);
  height: 100%;
}

/* Core Info Section */
#coreinfo {
  background-color: var(--wheat-light);
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--wheat-dark);
  height: 100%;
}

/* Contact Section */
#contacts {
  background-color: var(--sage-light);
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--sage-dark);
}

.form-control {
  border: 2px solid var(--wheat-dark);
  border-radius: 8px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--golden-dark);
  box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
}

.btn-primary {
  background-color: var(--golden-dark);
  border-color: var(--golden-dark);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--golden-light);
  border-color: var(--golden-light);
}

/* Blog Section */
#blog {
  background-color: var(--cream-light);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--wheat-dark);
  height: 100%;
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  background-color: var(--wheat-light);
}

.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--wheat-dark);
}

.faq-question {
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--brown-light);
  margin-bottom: 0;
}

/* Gallery Section */
#gallery {
  background-color: var(--sage-light);
  padding: 4rem 0;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background-color: var(--brown-dark);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--golden-light);
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--golden-light);
}

/* FORCE IMAGE VISIBILITY - CRITICAL STYLES */
img {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
  transition: none !important;
}

/* GALLERY AND SERVICE IMAGES - MAXIMUM VISIBILITY */
.gallery-item img,
.service-card img,
#hero img {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: none !important;
  max-width: 100% !important;
  height: auto !important;
  animation: none !important;
  transition: none !important;
}

/* DISABLE ALL ANIMATIONS GLOBALLY */
*, *:before, *:after {
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
  animation: none !important;
  transition: none !important;
}

/* FORCE VISIBILITY FOR ALL CONTAINERS */
.service-card,
.gallery-item,
.feature-card,
.price-card,
.team-card,
.review-card,
.case-card,
.process-step,
.timeline-item,
.career-card,
.info-card,
.contact-form,
.blog-card,
.faq-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility classes */
.text-primary-custom {
  color: var(--golden-dark);
}

.bg-primary-custom {
  background-color: var(--golden-light);
}

.border-primary-custom {
  border-color: var(--golden-dark);
} 


/* 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;
    }
}
