/* ========================================
   CRAFT POTTERY MARKETPLACE - MAIN STYLES
   ======================================== */

/* Color Palette - Pastel High-Contrast */
:root {
  --primary-clay: #D2936F;
  --secondary-sage: #9CAF88;
  --accent-cream: #F5E6D3;
  --neutral-charcoal: #2C3E50;
  --highlight-terracotta: #B85C38;
  
  /* Light/Dark Shades */
  --clay-light: #E8B89A;
  --clay-dark: #A67C5A;
  --sage-light: #B8C9A7;
  --sage-dark: #7A8F6B;
  --cream-light: #FAF1E8;
  --cream-dark: #E5D1B8;
  --charcoal-light: #34495E;
  --charcoal-dark: #1A252F;
  --terracotta-light: #D4744F;
  --terracotta-dark: #934A2C;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--neutral-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography - Conservative Sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-clay);
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--neutral-charcoal);
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--neutral-charcoal);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-charcoal);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--neutral-charcoal);
}

p {
  font-size: 1rem;
  color: var(--charcoal-light);
}

/* Header Styles */
.navbar {
  background-color: var(--accent-cream);
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
  padding: 1rem 0;
}

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

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

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

.hero-content {
  z-index: 2;
    padding-top: 275px;
}

.hero-decorative {
  position: absolute;
  right: 10%;
  top: 20%;
  width: 200px;
  height: 200px;
  background: var(--sage-light);
  border-radius: 50% 80% 30% 70%;
  opacity: 0.6;
  z-index: 1;
}

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

.section-title {
  color: var(--neutral-charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-clay);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-description {
  color: var(--charcoal-light);
  margin-bottom: 3rem;
}

/* About Section */
.about-section {
  background-color: var(--cream-light);
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

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

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

/* Services Section */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-clay);
}

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

.service-price {
  color: var(--highlight-terracotta);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Features Section */
.features-section {
  background-color: var(--sage-light);
}

/* Price Plan Section */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
  text-align: center;
}

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

.price-card.featured {
  border: 3px solid var(--primary-clay);
}

.price-amount {
  color: var(--highlight-terracotta);
  font-size: 3rem;
  font-weight: 700;
}

/* Team Section */
.team-section {
  background-color: var(--cream-light);
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  text-align: center;
  height: 100%;
}

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

/* Reviews Section */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  height: 100%;
}

.review-stars {
  color: var(--highlight-terracotta);
  margin-bottom: 1rem;
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--sage-light);
}

.case-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  height: 100%;
}

/* Process Section */
.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  text-align: center;
  height: 100%;
  position: relative;
}

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

/* Timeline Section */
.timeline-section {
  background-color: var(--cream-light);
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 2rem;
  width: 4px;
  height: 100%;
  background: var(--primary-clay);
}

/* Career Section */
.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  height: 100%;
  border-left: 4px solid var(--secondary-sage);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--sage-light);
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  height: 100%;
  text-align: center;
}

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

/* Contact Section */
.contact-section {
  background-color: var(--cream-light);
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
}

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

.form-control:focus {
  border-color: var(--primary-clay);
  box-shadow: 0 0 0 0.2rem rgba(210, 147, 111, 0.25);
}

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

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

.contact-info {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--primary-clay);
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 2rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--sage-light);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

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

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

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--cream-light);
}

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  margin-bottom: 1.5rem;
}

.faq-question {
  color: var(--neutral-charcoal);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--charcoal-light);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--sage-light);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

/* Utilities */
.text-clay {
  color: var(--primary-clay);
}

.text-sage {
  color: var(--secondary-sage);
}

.text-terracotta {
  color: var(--highlight-terracotta);
}

.bg-clay {
  background-color: var(--primary-clay);
}

.bg-sage {
  background-color: var(--secondary-sage);
}

.bg-cream {
  background-color: var(--accent-cream);
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

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