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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.loading-shimmer {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes shimmer {
  0% { transform: translateX(-200px); }
  100% { transform: translateX(200px); }
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  transition: width 0.3s ease;
}

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

/* Page Wrapper */
.page-wrapper {
  min-height: 100vh;
  padding-top: 80px;
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  line-height: 1;
}

.glitch-text {
  position: relative;
  animation: glitch 3s infinite;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

.hero-slogan {
  margin-bottom: 3rem;
}

.typing-text {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  display: block;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { border-color: rgba(255, 255, 255, 0.8); }
  51%, 100% { border-color: transparent; }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.cta-button.primary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.scan-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scan-icon {
  font-size: 1.2rem;
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-fabric {
  width: 300px;
  height: 400px;
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.8;
  position: relative;
  overflow: hidden;
}

.floating-fabric::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: fabric-shimmer 3s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fabric-shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.dye-effect {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.6), transparent);
  border-radius: 50%;
  animation: dye-spread 4s infinite alternate;
}

@keyframes dye-spread {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(2) translate(50px, -30px); opacity: 0.2; }
}

/* Sections */
.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
  position: relative;
}

.shimmer-text {
  background: linear-gradient(90deg, #fff, #ddd, #fff);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 3s infinite;
}

@keyframes text-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* About Preview */
.about-preview {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.about-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}

/* Collection Preview */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.collection-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.collection-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.item-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.scan-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection-item:hover .scan-tag {
  opacity: 1;
}

.item-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.item-owner {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Gradients for different pants */
.indigo-gradient {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa, #93c5fd);
}

.sunset-gradient {
  background: linear-gradient(135deg, #dc2626, #ea580c, #f97316, #fb923c);
}

.earth-gradient {
  background: linear-gradient(135deg, #44403c, #78716c, #a8a29e, #d6d3d1);
}

.ash-gradient {
  background: linear-gradient(135deg, #374151, #6b7280, #9ca3af, #d1d5db);
}

.heaven-water-gradient {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa, #87ceeb);
}

.earth-grace-gradient {
  background: linear-gradient(135deg, #166534, #22c55e, #4ade80, #1f2937);
}

/* How It Works */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.step h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Collection Page Specific */
.collection-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.page-hero {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.collection-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.collection-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
}

.collection-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.card-visual {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.scan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection-card:hover .scan-overlay {
  opacity: 1;
}

.qr-code {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.qr-pattern {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.qr-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.1) 75%),
    linear-gradient(-45deg, transparent 25%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.1) 75%);
  background-size: 10px 10px;
}

.indigo-qr { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.sunset-qr { background: linear-gradient(135deg, #dc2626, #f97316); }
.earth-qr { background: linear-gradient(135deg, #44403c, #a8a29e); }
.ash-qr { background: linear-gradient(135deg, #374151, #9ca3af); }
.heaven-water-qr { background: linear-gradient(135deg, #1e40af, #60a5fa); }
.earth-grace-qr { background: linear-gradient(135deg, #166534, #4ade80); }

.scan-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scan-btn:hover {
  background: white;
  transform: scale(1.05);
}

.card-info {
  text-align: center;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.card-owner {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.card-type {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.creation-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
}

/* About Page Specific */
.about-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-hero {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-thread {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: thread-sway 4s ease-in-out infinite;
}

.floating-dye {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255,107,107,0.4), transparent);
  border-radius: 50%;
  animation: dye-float 6s ease-in-out infinite;
}

@keyframes thread-sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(10deg); }
}

@keyframes dye-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.2); }
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.about-text-block {
  text-align: center;
  margin-bottom: 4rem;
}

.about-text-block h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
}

.large-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.philosophy-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.philosophy-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.manifesto-section {
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
}

.manifesto {
  font-size: 1.5rem;
  font-style: italic;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.manifesto-author {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* Item Page Specific */
.item-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pant-hero-section {
  display: flex;
  align-items: center;
  min-height: 80vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  gap: 4rem;
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pant-display {
  width: 300px;
  height: 400px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  animation: gentle-breathe 4s ease-in-out infinite;
}

@keyframes gentle-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.breathing-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent);
  animation: breathe-glow 3s ease-in-out infinite;
}

@keyframes breathe-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.wave-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
  animation: wave-flow 6s ease-in-out infinite;
}

@keyframes wave-flow {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-20px) scaleY(1.2); }
}

.flame-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, rgba(255,140,0,0.2), transparent);
  animation: flame-flicker 2s ease-in-out infinite alternate;
}

@keyframes flame-flicker {
  0% { transform: scaleY(1) scaleX(1); }
  100% { transform: scaleY(1.1) scaleX(0.95); }
}

.pulse-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(139,69,19,0.4), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: earth-pulse 3s ease-in-out infinite;
}

@keyframes earth-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(2); opacity: 0.1; }
}

.static-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 1px, transparent 1px);
  animation: static-flicker 0.5s infinite;
}

@keyframes static-flicker {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-info {
  flex: 1;
  color: white;
}

.pant-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.pant-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-style: italic;
}

.scan-code-display {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.qr-visual {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  position: relative;
}

/* Story Section */
.story-section {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.story-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.story-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.detail-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-label {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.detail-value {
  color: white;
  font-weight: 500;
}

/* Owner Profile */
.owner-profile {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-visual {
  flex-shrink: 0;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.profile-info {
  flex: 1;
}

.owner-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.owner-personality {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-style: italic;
}

.personality-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trait {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Design Section */
.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.design-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.design-card h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.design-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.color-swatches {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Color swatches for each pant */
.indigo-dark { background: #1e3a8a; }
.indigo-medium { background: #3b82f6; }
.indigo-light { background: #60a5fa; }
.indigo-splash { background: #93c5fd; }

.sunset-orange { background: #ea580c; }
.sunset-red { background: #dc2626; }
.sunset-wine { background: #be123c; }
.sunset-gold { background: #f59e0b; }

.earth-brown { background: #44403c; }
.earth-mud { background: #78716c; }
.earth-clay { background: #a8a29e; }
.earth-sand { background: #d6d3d1; }

.ash-dark { background: #374151; }
.ash-medium { background: #6b7280; }
.ash-light { background: #9ca3af; }
.ash-white { background: #d1d5db; }

.heaven-deep { background: #1e40af; }
.heaven-ocean { background: #3b82f6; }
.heaven-sky { background: #60a5fa; }
.heaven-light { background: #87ceeb; }

.grace-forest { background: #166534; }
.grace-green { background: #22c55e; }
.grace-light { background: #4ade80; }
.grace-dark { background: #1f2937; }

/* Style Guide */
.styling-tips {
  max-width: 600px;
  margin: 0 auto;
}

.tip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tip p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Community Section */
.community-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.community-btn {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.community-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.community-btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Theme-specific styles */
.indigo-theme {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
}

.sunset-theme {
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 50%, #f97316 100%);
}

.earth-theme {
  background: linear-gradient(135deg, #44403c 0%, #78716c 50%, #a8a29e 100%);
}

.ash-theme {
  background: linear-gradient(135deg, #374151 0%, #6b7280 50%, #9ca3af 100%);
}

.heaven-water-theme {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.earth-grace-theme {
  background: linear-gradient(135deg, #166534 0%, #22c55e 50%, #4ade80 100%);
}

/* Shimmer effects for different themes */
.indigo-shimmer {
  background: linear-gradient(90deg, #1e3a8a, #60a5fa, #1e3a8a);
}

.sunset-shimmer {
  background: linear-gradient(90deg, #dc2626, #f97316, #dc2626);
}

.earth-shimmer {
  background: linear-gradient(90deg, #44403c, #a8a29e, #44403c);
}

.ash-shimmer {
  background: linear-gradient(90deg, #374151, #d1d5db, #374151);
}

.heaven-water-shimmer {
  background: linear-gradient(90deg, #1e40af, #60a5fa, #1e40af);
}

.earth-grace-shimmer {
  background: linear-gradient(90deg, #166534, #4ade80, #166534);
}

/* Footer */
.main-footer {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-link {
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .collection-grid,
  .collection-grid-full {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pant-hero-section {
    flex-direction: column;
    text-align: center;
  }
  
  .pant-display {
    width: 250px;
    height: 300px;
  }
  
  .owner-profile {
    flex-direction: column;
    text-align: center;
  }
  
  .section-content {
    padding: 2rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .typing-text {
    font-size: 1.2rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .nav-container {
    padding: 1rem;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .pant-title {
    font-size: 2rem;
  }
  
  .story-quote {
    font-size: 1.2rem;
  }
}