/* ================================
   HOCHMODERNE ABOUT SEITE STYLES
   ================================ */

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(185, 157, 95, 0.15) 0%, transparent 70%);
  animation: float 20s infinite;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  padding: 4rem 2rem;
  text-align: center;
}

.about-hero-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(185, 157, 95, 0.2);
  border: 1px solid rgba(185, 157, 95, 0.4);
  border-radius: 50px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.about-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

.hero-values-professional {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease-out 0.6s backwards;
}

.value-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: left;
  padding: 2rem 0;
}

.value-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem 0;
  letter-spacing: 0.5px;
}

.value-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

/* Story Section */
.about-story {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.story-highlight {
  color: var(--brand);
  position: relative;
  display: inline-block;
}

.story-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  animation: slideIn 1s ease-out;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.story-icon {
  width: 100%;
  max-width: 320px;
  height: auto;
  color: var(--gold);
  opacity: 0.9;
  filter: drop-shadow(0 10px 30px rgba(185, 157, 95, 0.2));
  animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
}


/* Values Section */
.about-values {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-values::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(185, 157, 95, 0.05) 0%, transparent 70%);
}

.values-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.values-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.values-header p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

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

.value-card-modern {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 100%);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.value-card-modern:hover::before {
  transform: scaleX(1);
}

.value-card-modern:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--brand);
}

.value-icon-modern {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(185, 157, 95, 0.1) 0%, rgba(185, 157, 95, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.value-card-modern:hover .value-icon-modern {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  transform: scale(1.1) rotate(5deg);
}

.value-icon-modern svg {
  width: 40px;
  height: 40px;
  color: var(--brand);
  transition: color 0.4s;
}

.value-card-modern:hover .value-icon-modern svg {
  color: white;
}

.value-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.value-card-modern p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

/* Team Section */
.about-team {
  padding: 6rem 2rem;
  background: white;
}

.team-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.team-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.team-header p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.team-grid-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
}

.team-member-modern {
  background: white;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.team-member-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-image-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-image-container::after {
  display: none;
}

.team-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}

.team-member-modern:hover .team-image-container img {
  transform: scale(1.1);
}

.team-content-modern {
  padding: 0;
}

.team-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.team-role-modern {
  font-size: 1rem;
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.team-description-modern {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

/* Partners Section */
.about-partners {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-partners::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(185, 157, 95, 0.1) 0%, transparent 70%);
}

.partners-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 1;
}

.partners-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.partners-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.partners-grid-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.partner-card-modern {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
}

.partner-card-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--brand);
  transform: translateY(-10px);
}

.partner-icon-modern {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}

.partner-card-modern:hover .partner-icon-modern {
  transform: scale(1.1) rotate(-5deg);
}

.partner-icon-modern svg {
  width: 35px;
  height: 35px;
  color: white;
}

.partner-card-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.partner-card-modern p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.about-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 6rem 2rem;
  text-align: center;
}

.cta-content-modern {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content-modern h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.cta-content-modern p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.cta-button-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(185, 157, 95, 0.3);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.cta-button-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button-modern:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(185, 157, 95, 0.4);
}

.cta-button-modern span {
  position: relative;
  z-index: 1;
}

.cta-button-modern svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  transition: transform 0.4s;
}

.cta-button-modern:hover svg {
  transform: translateX(5px);
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .about-hero {
    min-height: 60vh;
  }

  .hero-values-professional {
    gap: 2rem;
  }

  .value-card {
    min-width: 200px;
  }

  .value-card h3 {
    font-size: 1.3rem;
  }

  .value-card p {
    font-size: 0.95rem;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-icon-container {
    order: -1;
  }

  .team-grid-modern {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
  }

  .hero-values-professional {
    flex-direction: column;
    gap: 2rem;
  }

  .value-card {
    max-width: 100%;
    text-align: center;
  }

  .value-line {
    margin: 0 auto 1.5rem;
  }

  .values-grid-modern,
  .partners-grid-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }


  .story-icon {
    max-width: 250px;
  }

  .team-image-container {
    width: 180px;
    height: 180px;
  }
}

