:root {
  /* Bakery Color Palette - Pastel High Contrast */
  --primary-cream: #FFF8E7;
  --primary-sage: #9CAF88;
  --primary-coral: #F4A6A6;
  --primary-brown: #8B4513;
  --primary-gold: #FFB347;
  
  /* Light/Dark Shades */
  --cream-light: #FFFEF9;
  --cream-dark: #F5EDD3;
  --sage-light: #B8CCA4;
  --sage-dark: #7A8A6B;
  --coral-light: #F8C4C4;
  --coral-dark: #E08888;
  --brown-light: #A65D2B;
  --brown-dark: #6D3309;
  --gold-light: #FFC96B;
  --gold-dark: #E09F29;
}

/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-brown);
  background-color: var(--primary-cream);
  line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

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

.section-title {
  color: var(--primary-brown);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-description {
  color: var(--brown-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Cards */
.custom-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  overflow: hidden;
}

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

.custom-card img {
  height: 200px;
  object-fit: cover;
}

.card-title {
  color: var(--primary-brown);
  font-weight: 600;
  font-size: 1.2rem;
}

.card-text {
  color: var(--brown-light);
  font-size: 0.95rem;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--primary-sage);
  transform: translateY(-3px);
}

.service-price {
  background: var(--primary-coral);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Team Cards */
.team-card {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.08);
}

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

/* Reviews/Testimonials */
.review-card {
  background: var(--cream-light);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-coral);
}

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

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.08);
  border: 1px solid var(--cream-dark);
}

.faq-question {
  background: var(--sage-light);
  color: var(--primary-brown);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}

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

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

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

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

/* Footer */
.footer {
  background: var(--primary-brown);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

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

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

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

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

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

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

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

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 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 Cards */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.08);
  transition: transform 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Breadcrumb */
.breadcrumb-custom {
  background: transparent;
  padding: 1rem 0;
}

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

/* Space Page */
#space {
  min-height: 60vh;
  background: var(--cream-light);
  border-radius: 15px;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brown-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
}

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


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