/* Rare Spices Subscription Service - Main Styles */

/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Color Palette - Pastel High Contrast */
:root {
  --primary-saffron: #F4A460;
  --primary-paprika: #CC5500;
  --primary-sage: #9CAF88;
  --primary-cardamom: #D2B48C;
  --primary-turmeric: #E6B800;
  
  /* Light shades */
  --light-saffron: #FFF8DC;
  --light-paprika: #FFE4CC;
  --light-sage: #F0F4E6;
  --light-cardamom: #F5F0E6;
  --light-turmeric: #FFF9CC;
  
  /* Dark shades */
  --dark-saffron: #CD853F;
  --dark-paprika: #8B3A00;
  --dark-sage: #6B7D5C;
  --dark-cardamom: #A0895C;
  --dark-turmeric: #B8930D;
}

/* Global Styles */
html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--light-saffron);
  overflow-x: hidden; /* Disable horizontal scroll on desktop */
}

body {
  width: 100%;
  max-width: 100vw;
}

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

/* Typography - Conservative sizes */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-paprika);
}

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

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

h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark-sage);
  margin-bottom: 0.6rem;
}

p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Header */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 0.8rem 0;
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--primary-turmeric);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-image {
  background: var(--light-turmeric);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  color: var(--dark-sage);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: #fff;
}

.feature-card {
  background: var(--light-cardamom);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: none;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-paprika);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(45deg, var(--light-sage) 0%, var(--light-saffron) 100%);
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: none;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-image {
  background: var(--primary-turmeric);
  height: 120px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
}

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

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: #fff;
}

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

.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 3px solid var(--light-sage);
  transition: border-color 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-sage);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-paprika);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: #fff;
}

.team-card {
  background: var(--light-sage);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: none;
}

.team-photo {
  width: 120px;
  height: 120px;
  background: var(--primary-cardamom);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

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

.review-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-stars {
  color: var(--primary-turmeric);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Case Study Section */
.casestudy-section {
  padding: 5rem 0;
  background-color: #fff;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: var(--light-paprika);
}

.process-step {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: none;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-paprika);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Timeline Section */
.timeline-section {
  padding: 5rem 0;
  background-color: #fff;
}

/* Career Section */
.career-section {
  padding: 5rem 0;
  background: var(--light-sage);
}

/* Core Info Section */
.coreinfo-section {
  padding: 5rem 0;
  background-color: #fff;
}

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

.contact-form {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

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

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

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background-color: #fff;
}

.blog-card {
  background: var(--light-turmeric);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: none;
  transition: transform 0.3s ease;
}

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

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--light-saffron);
}

.faq-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-paprika);
  margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: #fff;
}

.gallery-item {
  display: block;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Footer */
.footer {
  background-color: var(--dark-sage);
  color: #fff;
  padding: 3rem 0 1rem 0;
}

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

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer .copyright {
  border-top: 1px solid #555;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: #ccc;
}

/* Utility Classes */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--dark-sage);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-description {
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-cardamom);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  background: var(--primary-sage);
  border-radius: 5px;
  display: inline-block;
}

.hero-section h1 {
    padding-top: 225px;
}


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

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

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

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
