@charset "utf-8";

.about-hero {
    margin-top: 9vh;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  z-index: 0;
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/shop.png');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(153, 27, 27, 0.1) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
  color: white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
  animation: slideInDown 0.8s ease-out 0.2s both;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-start) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-tertiary);
  font-size: 14px;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

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

/* Story Section */
.story-section {
  padding: 120px 20px;
  background: var(--bg-primary);
  position: relative;
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  display: inline-block;
  color: var(--accent-start);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.story-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.2;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.story-content p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.4s forwards;
}

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


.stat-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.stat-box:hover {
  transform: translateY(-10px);
  background: var(--card-bg-hover);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.story-image {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-card {
  width: 100%;
  max-width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(153, 27, 27, 0.1) 100%);
  border-radius: 30px;
  border: 2px solid var(--border-color);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px var(--shadow-color);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: scaleIn 1s ease-out 0.5s forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.image-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--accent-start), var(--accent-end), var(--accent-start));
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.image-card:hover::before {
  opacity: 0.2;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
  color: white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  animation: float 3s ease-in-out infinite;
}

.badge-1 {
  top: 50px;
  right: -20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 80px;
  left: -20px;
  animation-delay: 1.5s;
}

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

/* Values Section */
.values-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  position: relative;
  overflow: hidden;
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 80px;
}

.section-header-center h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-header-center p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--card-bg-hover);
  box-shadow: 0 20px 50px var(--shadow-color);
  border-color: var(--accent-start);
}

.value-icon {
  font-size: 64px;
  margin-bottom: 25px;
  display: block;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 120px 20px;
  background: var(--bg-primary);
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
}

.team-card {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.team-card:nth-child(1) { animation-delay: 0.2s; }
.team-card:nth-child(2) { animation-delay: 0.4s; }
.team-card:nth-child(3) { animation-delay: 0.6s; }

.team-image {
  width: 100%;
  max-width: 280px;
  height: 280px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(153, 27, 27, 0.1) 100%);
  border-radius: 50%;
  border: 3px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.team-image::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(45deg, var(--accent-start), var(--accent-end));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate 3s linear infinite;
}

.team-card:hover .team-image::before {
  opacity: 1;
}

.team-image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.team-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.cta-btn.secondary {
  background: var(--card-bg);
  border: 2px solid var(--border-color-hover);
  color: var(--text-primary);
}

.cta-btn.secondary:hover {
  background: var(--card-bg-hover);
  border-color: var(--accent-start);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }

  .story-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-image {
    height: 500px;
  }

  .image-card {
    max-width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    margin-top: 70px;
    padding: 40px 20px;
    min-height: 90vh;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .story-section {
    padding: 80px 20px;
  }

  .story-content h2 {
    font-size: 32px;
  }

  .story-content p {
    font-size: 16px;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-image {
    height: 400px;
  }

  .image-card {
    max-width: 320px;
    height: 320px;
    padding: 30px;
  }

  .floating-badge {
    padding: 10px 20px;
    font-size: 12px;
  }

  .values-section {
    padding: 80px 20px;
  }

  .section-header-center {
    margin-bottom: 50px;
  }

  .section-header-center h2 {
    font-size: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .value-card {
    padding: 30px;
  }

  .team-section {
    padding: 80px 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-section {
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-hero {
    margin-top: 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .scroll-indicator {
    font-size: 12px;
  }

  .story-section {
    padding: 60px 15px;
  }

  .story-content h2 {
    font-size: 28px;
  }

  .image-card {
    max-width: 280px;
    height: 280px;
    padding: 20px;
  }

  .stat-icon {
    font-size: 36px;
  }

  .stat-value {
    font-size: 28px;
  }

  .values-section,
  .team-section,
  .cta-section {
    padding: 60px 15px;
  }

  .section-header-center h2,
  .cta-content h2 {
    font-size: 28px;
  }

  .section-header-center p {
    font-size: 16px;
  }

  .value-card {
    padding: 25px;
  }

  .value-icon {
    font-size: 48px;
  }

  .value-card h3 {
    font-size: 20px;
  }

  .team-image {
    max-width: 240px;
    height: 240px;
  }

  .team-card h3 {
    font-size: 20px;
  }
}