@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #2b352b;
  background-color: #fdf8f6;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.font-serif {
  font-family: 'Crimson Text', serif;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(67, 48, 43, 0.1);
}

.clay-gradient {
  background: linear-gradient(135deg, #f2e8e5 0%, #eaddd7 50%, #d2bab0 100%);
}

.terracotta-gradient {
  background: linear-gradient(135deg, #dc6243 0%, #ca4a2a 50%, #a93c22 100%);
}

.sage-gradient {
  background: linear-gradient(135deg, #5f7a5f 0%, #4a614a 50%, #3d4f3d 100%);
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

.gentle-bounce {
  animation: gentleBounce 2s infinite;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Navigation Styles */
.navbar {
  background: rgba(253, 248, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(210, 186, 176, 0.2);
  transition: all 0.3s ease;
}

.nav-link {
  color: #43302b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #dc6243;
}

.nav-link.active {
  color: #dc6243;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #dc6243;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Button Styles */
.pottery-btn-primary {
  background: linear-gradient(135deg, #dc6243 0%, #ca4a2a 100%);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  min-width: fit-content;
}

.pottery-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 98, 67, 0.3);
  color: white;
  text-decoration: none;
}

.pottery-btn-secondary {
  background: transparent;
  color: #43302b;
  padding: 14px 28px;
  border: 2px solid #d2bab0;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  min-width: fit-content;
}

.pottery-btn-secondary:hover {
  background: #dc6243;
  color: white;
  border-color: #dc6243;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Card Styles */
.artisan-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(67, 48, 43, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(210, 186, 176, 0.2);
}

.artisan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(67, 48, 43, 0.15);
}

/* Form Styles */
.pottery-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0cec7;
  border-radius: 8px;
  background: white;
  color: #43302b;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.pottery-form-input:focus {
  outline: none;
  border-color: #dc6243;
  box-shadow: 0 0 0 3px rgba(220, 98, 67, 0.1);
}

.pottery-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0cec7;
  border-radius: 8px;
  background: white;
  color: #43302b;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.pottery-form-textarea:focus {
  outline: none;
  border-color: #dc6243;
  box-shadow: 0 0 0 3px rgba(220, 98, 67, 0.1);
}

/* Hero Styles */
.pottery-hero {
  background: linear-gradient(135deg, rgba(253, 248, 246, 0.9) 0%, rgba(234, 221, 215, 0.9) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .pottery-btn-primary,
  .pottery-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .artisan-card {
    padding: 1.5rem;
  }
}

/* Cookie Consent */
.pottery-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(67, 48, 43, 0.95);
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-top: 3px solid #dc6243;
}

.pottery-cookie-banner.hidden {
  display: none;
}

/* Loading Animation */
.ceramic-loading {
  opacity: 0;
  animation: ceramicFadeIn 1s ease-out forwards;
}

@keyframes ceramicFadeIn {
  to { opacity: 1; }
}