/* Digital Recipe Cards Shop - Main Styles */

/* Color Palette - 5 primary colors with light/dark shades */
:root {
  --primary-coral: #ff8389;
  --primary-coral-light: #f87e8d;
  --primary-coral-dark: #e37761;
  
  --primary-sage: #76bda0;
  --primary-sage-light: #acd4c0;
  --primary-sage-dark: #79b091;
  
  --primary-cream: #f6eed4;
  --primary-cream-light: #FAF7F0;
  --primary-cream-dark: #e4e2db;
  
  --primary-charcoal: #288ec2;
  --primary-charcoal-light: #5a6b6f;
  --primary-charcoal-dark: #090909;
  
  --primary-gold: #ffc812;
  --primary-gold-light: #ee9c43;
  --primary-gold-dark: #d47400;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-sage) 100%);
  --gradient-warm: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-coral) 100%);
  --gradient-soft: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-sage-light) 100%);
}

/* Bootstrap Overrides */
.navbar-brand {
  font-size: 1.38rem !important;
  font-weight: 600;
  color: var(--primary-charcoal) !important;
}

h1 {
  font-size: 2.53rem;
  font-weight: 700;
  color: var(--primary-charcoal);
}

h2 {
  font-size: 2.01rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

h3 {
  font-size: 1.51rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

p {
  font-size: 1.13rem;
  line-height: 1.6;
  color: var(--primary-charcoal-light);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(11px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../SAM_images/hero-background.webp') center/cover;
  opacity: 0.1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-decorative {
  position: absolute;
  background: var(--primary-cream);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-decorative:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
}

.hero-decorative:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
}

/* Services Section */
.services-section {
  background: var(--primary-cream);
  padding: 80px 0;
}

.service-card {
  background: white;
  border-radius: 114px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 21px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 21.00px;
}

.service-price {
  font-size: 2.01rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 15px 0;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: white;
}

.feature-item {
  text-align: center;
  padding: 22px;
}

.feature-item i {
  font-size: 3.14rem;
  color: var(--primary-coral);
  margin-bottom: 21.00px;
}

/* Team Section */
.team-section {
  background: var(--gradient-soft);
  padding: 80px 0;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 21.00px;
  border: 4px solid var(--primary-coral);
}

/* Reviews Section */
.reviews-section {
  background: var(--primary-charcoal);
  color: white;
  padding: 80px 0;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin: 20px 0;
}

.review-text {
  font-style: italic;
  margin-bottom: 21.00px;
  color: var(--primary-cream);
}

.review-author {
  font-weight: 600;
  color: var(--primary-coral);
}

/* FAQ Section */
.faq-section {
  background: var(--primary-cream-light);
  padding: 80px 0;
}

.accordion-item {
  border: none;
  border-radius: 10px !important;
  margin-bottom: 13.00px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background: var(--primary-coral) !important;
  color: white !important;
  border-radius: 10px !important;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-coral-dark) !important;
}

/* Blog Section */
.blog-section {
  background: white;
  padding: 80px 0;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 25px;
}

/* Contact Section */
.contact-section {
  background: var(--gradient-warm);
  padding: 80px 0;
  color: white;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid #cbc4c4;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(255, 86, 83, 0.25);
}

.btn-primary {
  background: var(--primary-coral);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-coral-dark);
  transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
  background: var(--primary-cream);
  padding: 80px 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 32.00px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--primary-charcoal);
  color: white;
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--primary-coral);
  margin-bottom: 21.00px;
}

.footer p, .footer a {
  color: var(--primary-cream-light);
}

.footer a:hover {
  color: var(--primary-coral);
  text-decoration: none;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 20px 0;
}

.breadcrumb-item img {
  width: 24px;
  height: 24px;
}

/* Utility Classes */
.section-padding {
  padding: 80px 0;
}

.text-primary-coral {
  color: var(--primary-coral) !important;
}

.bg-primary-coral {
  background-color: var(--primary-coral) !important;
}

.text-primary-sage {
  color: var(--primary-sage) !important;
}

.bg-primary-sage {
  background-color: var(--primary-sage) !important;
}

/* Swiper Overrides */
.swiper {
  padding: 20px 0;
}

.swiper-pagination-bullet {
  background: var(--primary-coral);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-coral);
} 


/* 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;
}

.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;
    }
}
