:root {
  --primary-terracotta: #cd5c5c;
  --primary-clay: #b8860b;
  --primary-sage: #9caf88;
  --primary-cream: #f5f5dc;
  --primary-charcoal: #36454f;
  
  --terracotta-light: #e6a0a0;
  --terracotta-dark: #a0474f;
  --clay-light: #d4af37;
  --clay-dark: #8b6914;
  --sage-light: #b8c9a8;
  --sage-dark: #7a8f6a;
  --cream-light: #fefefe;
  --cream-dark: #e6e6cd;
  --charcoal-light: #5a6a7a;
  --charcoal-dark: #2c3e50;
  
  --gradient-primary: linear-gradient(135deg, var(--primary-terracotta), var(--primary-clay));
  --gradient-secondary: linear-gradient(135deg, var(--primary-sage), var(--primary-cream));
  --gradient-accent: linear-gradient(135deg, var(--primary-charcoal), var(--charcoal-light));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-charcoal);
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-terracotta) !important;
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal) !important;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-terracotta) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../COM_images/pottery-studio-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--cream-light);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--cream-light);
  opacity: 0.9;
}

/* About Section */
#about {
  padding: 5rem 0;
  background: var(--primary-cream);
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
  text-align: center;
}

.section-desc {
  color: var(--charcoal-light);
  text-align: center;
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-terracotta);
}

.feature-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* Services Section */
#services {
  padding: 5rem 0;
  background: white;
}

.service-card {
  background: var(--primary-cream);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--charcoal-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--charcoal-light);
  font-size: 0.9rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-sage);
  margin-right: 0.5rem;
}

/* Features Section */
#features {
  padding: 5rem 0;
  background: var(--gradient-secondary);
}

/* Price Plan Section */
#priceplan {
  padding: 5rem 0;
  background: white;
}

.price-card {
  background: white;
  border: 2px solid var(--primary-cream);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-terracotta);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary-terracotta);
  transform: scale(1.05);
}

/* Team Section */
#team {
  padding: 5rem 0;
  background: var(--primary-cream);
}

.team-card {
  text-align: center;
  margin-bottom: 2rem;
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-terracotta);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-terracotta);
  font-weight: 500;
}

/* Reviews Section */
#reviews {
  padding: 5rem 0;
  background: white;
}

.review-card {
  background: var(--primary-cream);
  padding: 2rem;
  border-radius: 15px;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-charcoal);
}

/* Blog Section */
#blog {
  padding: 5rem 0;
  background: white;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--primary-cream);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--primary-terracotta);
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-charcoal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-terracotta);
  text-decoration: none;
}

.blog-excerpt {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-outline-primary {
  border-color: var(--primary-terracotta);
  color: var(--primary-terracotta);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  color: white;
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
  background: var(--primary-cream);
}

.accordion-button {
  background-color: white;
  color: var(--primary-charcoal);
  border: none;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-terracotta);
  color: white;
}

.accordion-body {
  overflow-x: hidden;
  background-color: var(--cream-light);
  color: var(--charcoal-light);
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background: white;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,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);
}

/* Contact Section */
#contacts {
  padding: 5rem 0;
  background: var(--gradient-primary);
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 8px;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-control:focus {
  background: rgba(255,255,255,0.3);
  border-color: var(--primary-cream);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(245,245,220,0.25);
}

.btn-primary {
  background: var(--primary-clay);
  border-color: var(--primary-clay);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

/* Footer */
footer {
  background: var(--primary-charcoal);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: var(--primary-terracotta);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: var(--cream-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-terracotta);
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--primary-cream);
}

.breadcrumb-img {
  height: 24px;
  opacity: 0.7;
}

/* Utilities */
.text-terracotta { color: var(--primary-terracotta) !important; }
.text-clay { color: var(--primary-clay) !important; }
.text-sage { color: var(--primary-sage) !important; }
.bg-terracotta { background-color: var(--primary-terracotta) !important; }
.bg-clay { background-color: var(--primary-clay) !important; }
.bg-sage { background-color: var(--primary-sage) !important; }

/* Space page */
#space {
  min-height: 70vh;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
} 