/* Clay Sculpture Classes - Main CSS */
@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.5.1/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');

/* CSS Variables - Clay Sculpture Theme */
:root {
  --primary-terracotta: #c67b5c;
  --primary-clay: #8b5a3c;
  --primary-earth: #6b4423;
  --primary-sand: #d4a574;
  --primary-cream: #f4e6d2;
  
  /* Light shades */
  --light-terracotta: #e8b8a0;
  --light-clay: #b87d5e;
  --light-earth: #8a6b4f;
  --light-sand: #e6c4a2;
  --light-cream: #f9f2e8;
  
  /* Dark shades */
  --dark-terracotta: #a45d42;
  --dark-clay: #6b3d26;
  --dark-earth: #4a2e19;
  --dark-sand: #b8885a;
  --dark-cream: #e6d1b8;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-terracotta), var(--primary-clay));
  --gradient-secondary: linear-gradient(135deg, var(--primary-sand), var(--primary-cream));
  --gradient-accent: linear-gradient(135deg, var(--primary-earth), var(--primary-clay));
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.125rem;
  --font-size-h6: 1rem;
  
  /* Shadows */
  --box-shadow-sm: 0 2px 4px rgba(107, 68, 35, 0.1);
  --box-shadow-md: 0 4px 8px rgba(107, 68, 35, 0.15);
  --box-shadow-lg: 0 8px 16px rgba(107, 68, 35, 0.2);
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-earth);
  background-color: var(--light-cream);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

/* Utility Classes */
.text-primary { color: var(--primary-terracotta) !important; }
.text-secondary { color: var(--primary-clay) !important; }
.bg-primary { background-color: var(--primary-terracotta) !important; }
.bg-secondary { background-color: var(--primary-clay) !important; }
.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-secondary { background: var(--gradient-secondary) !important; }

/* Header & Navigation */
.navbar {
  background: var(--gradient-primary) !important;
  padding: 1rem 0;
  box-shadow: var(--box-shadow-md);
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-cream) !important;
  transform: translateY(-2px);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../KEL_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#hero p {
  font-size: var(--font-size-large);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  z-index: 1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-clay);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--dark-earth);
  font-size: var(--font-size-large);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
#about {
  background: linear-gradient(135deg, var(--light-cream), white);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--box-shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-terracotta);
  margin-bottom: 1.5rem;
}

.feature-card h4 {
  color: var(--primary-clay);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background: var(--gradient-secondary);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  z-index: 0;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  color: white;
  transform: translateY(-15px);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin: 1rem 0;
}

.service-card:hover .service-price {
  color: var(--light-cream);
}

/* Team Section */
#team {
  background: white;
}

.team-card {
  text-align: center;
  background: var(--light-cream);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--box-shadow-md);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--primary-terracotta);
}

.team-card h4 {
  color: var(--primary-clay);
  margin-bottom: 0.5rem;
}

.team-card .role {
  color: var(--primary-terracotta);
  font-style: italic;
}

/* Reviews/Testimonials */
#reviews {
  background: var(--gradient-primary);
  color: white;
}

.swiper-slide {
  padding: 2rem;
}

.review-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.review-text {
  font-size: var(--font-size-large);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--light-cream);
}

/* Gallery */
#gallery {
  background: var(--light-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow-md);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--box-shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* FAQ Section */
#faq {
  background: white;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
}

.accordion-button {
  background: var(--gradient-secondary) !important;
  color: var(--dark-earth) !important;
  font-weight: 600;
  border: none !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-body {
  background: var(--light-cream);
  color: var(--dark-earth);
}

/* Blog Section */
#blog {
  background: var(--gradient-secondary);
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

.blog-card h4 {
  color: var(--primary-clay);
  margin-bottom: 1rem;
}

.blog-card .btn {
  background: var(--gradient-primary);
  border: none;
  color: white;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.blog-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-sm);
}

/* Contact Section */
#contacts {
  background: var(--gradient-primary);
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.form-control {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  background: white;
  box-shadow: 0 0 0 0.2rem rgba(198, 123, 92, 0.25);
  border-color: var(--primary-terracotta);
}

.btn-submit {
  background: var(--gradient-accent);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-md);
  color: white;
}

/* Footer */
footer {
  background: var(--dark-earth);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--primary-sand);
  margin-bottom: 1rem;
}

footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--primary-sand);
}

.footer-bottom {
  border-top: 1px solid var(--primary-clay);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
