/* Pottery Workshop - Main CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.min.css');

/* Color Palette */
:root {
  --primary-clay: #8B4513;
  --primary-terracotta: #CD853F;
  --primary-earthen: #A0522D;
  --primary-cream: #F5F5DC;
  --primary-sage: #9CAF88;
  --light-clay: #B8734C;
  --light-terracotta: #DEB887;
  --light-earthen: #BC7B5B;
  --light-cream: #FAFAFA;
  --light-sage: #B8C5A8;
  --dark-clay: #5D2E08;
  --dark-terracotta: #8B6914;
  --dark-earthen: #6B3A1F;
  --dark-cream: #E6E6CD;
  --dark-sage: #6B7B5A;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark-clay);
  background-color: var(--light-cream);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-clay), var(--primary-earthen));
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(139, 69, 19, 0.2);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-cream) !important;
}

.navbar-nav .nav-link {
  color: var(--light-cream) !important;
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-terracotta) !important;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(160, 82, 45, 0.7)), url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-clay);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--primary-earthen);
  margin-bottom: 1rem;
  text-align: center;
}

.section-desc {
  font-size: 1rem;
  color: var(--dark-earthen);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background-color: var(--primary-cream);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, var(--light-sage), var(--primary-sage));
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-clay);
  margin: 1rem 0;
}

/* Team Section */
.team {
  background-color: var(--light-cream);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-terracotta);
  margin-bottom: 1rem;
}

/* Reviews Slider */
.reviews {
  background: linear-gradient(135deg, var(--primary-terracotta), var(--light-terracotta));
  color: white;
}

.reviews-swiper {
  padding: 2rem 0;
  margin: 2rem 0;
}

.reviews-swiper .swiper-slide {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 0 15px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-text {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-author {
  font-weight: bold;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Swiper Navigation */
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
}

.reviews-swiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.reviews-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: white;
}

/* Contact Form */
.contact {
  background-color: var(--primary-cream);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-terracotta);
  box-shadow: 0 0 0 0.2rem rgba(205, 133, 63, 0.25);
}

.btn-primary {
  background: var(--primary-clay);
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-clay), var(--dark-earthen));
  transform: translateY(-2px);
}

/* FAQ Section */
.faq {
  background-color: var(--light-cream);
}

.accordion-button {
  background-color: var(--primary-cream);
  color: var(--primary-clay);
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-terracotta);
  color: white;
}

/* Gallery */
.gallery {
  background-color: var(--light-sage);
}

.gallery-item {
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Blog Section */
.blog {
  background-color: var(--primary-cream);
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-clay), var(--dark-earthen));
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-terracotta);
}

/* Price Plans */
.price-plan {
  background: linear-gradient(135deg, var(--light-cream), var(--primary-cream));
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 3px solid var(--primary-terracotta);
  transform: scale(1.05);
}

/* Process Steps */
.process {
  background-color: var(--light-sage);
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
  background-color: var(--primary-cream);
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
}

.timeline-date {
  background: var(--primary-clay);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  min-width: 120px;
  text-align: center;
  font-weight: bold;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin-left: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  flex: 1;
}

/* Career Section */
.career {
  background-color: var(--light-cream);
}

.career-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-terracotta);
}

/* Core Info */
.core-info {
  background: linear-gradient(135deg, var(--primary-sage), var(--light-sage));
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

/* Case Studies */
.case-studies {
  background-color: var(--light-cream);
}

.case-study-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Utilities */
.text-clay { color: var(--primary-clay); }
.text-terracotta { color: var(--primary-terracotta); }
.text-earthen { color: var(--primary-earthen); }
.text-sage { color: var(--primary-sage); }

.bg-clay { background-color: var(--primary-clay); }
.bg-terracotta { background-color: var(--primary-terracotta); }
.bg-earthen { background-color: var(--primary-earthen); }
.bg-cream { background-color: var(--primary-cream); }
.bg-sage { background-color: var(--primary-sage); } 