:root {
  /* Primary Color Palette - Pottery Inspired */
  --primary-clay: #D4A574;
  --primary-terracotta: #B85450;
  --primary-sage: #9CAF88;
  --primary-cream: #F5F1E8;
  --primary-charcoal: #4A4A4A;
  
  /* Light/Dark Shades */
  --clay-light: #E8CBA0;
  --clay-dark: #C0924B;
  --terracotta-light: #D16B67;
  --terracotta-dark: #A03D39;
  --sage-light: #B8C8A7;
  --sage-dark: #7F9269;
  --cream-light: #FDFCF7;
  --cream-dark: #EBE3D2;
  --charcoal-light: #6A6A6A;
  --charcoal-dark: #2A2A2A;
}

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

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-terracotta);
}

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

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-terracotta);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 0.625rem;
}

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

/* Header Styles */
#header {
  background-color: var(--primary-cream);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
}

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

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  opacity: 0.1;
  border-radius: 50%;
  top: 10%;
  right: 10%;
  transform: rotate(45deg);
}

.hero-decorative:before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--primary-terracotta);
  opacity: 0.6;
  border-radius: 50%;
  bottom: -20px;
  left: -20px;
}

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

.section-light {
  background-color: var(--primary-cream);
}

.section-dark {
  background-color: var(--cream-dark);
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  color: white;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  color: white;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

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

.card-header {
  background-color: var(--primary-clay);
  color: white;
  border-radius: 0.75rem 0.75rem 0 0;
  font-weight: 600;
}

/* Service Cards */
.service-card {
  text-align: center;
  padding: 2rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.price-tag {
  background-color: var(--primary-terracotta);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.125rem;
  display: inline-block;
  margin-top: 1rem;
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

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

/* Review Cards */
.review-card {
  background-color: white;
  border-left: 4px solid var(--primary-sage);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.review-author {
  color: var(--primary-terracotta);
  font-weight: 600;
  font-style: italic;
}

/* FAQ Cards */
.faq-card {
  background-color: white;
  border: 1px solid var(--cream-dark);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

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

/* Contact Form */
.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 0.5rem;
  padding: 0.75rem 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);
}

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

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

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

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

#site-copyright {
  background-color: var(--charcoal-dark);
  color: var(--cream-light);
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--charcoal-light);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px 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;
}

/* Blog Grid */
#blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.blog-card {
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  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;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

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

/* Responsive Design Helpers */
@media (max-width: 768px) {
  .hero-decorative {
    display: none;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  #blog_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

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

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

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

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

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

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

.hero-content {
    padding-top: 225px;
}


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

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.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;
    }
}
