
/* Das Weite Theater Portfolio Page - Custom Styles */

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

@keyframes pf-ai-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pf-ai-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pf-ai-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pf-ai-rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pf-ai-curtain {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.pf-ai-hero {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: linear-gradient(135deg, #c81357 0%, #e40422 50%, #e49900 100%);
  background-size: 200% 200%;
  animation: pf-ai-gradient-shift 8s ease infinite;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.pf-ai-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(223, 170, 19, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pf-ai-float 6s ease-in-out infinite;
}

.pf-ai-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(228, 4, 34, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pf-ai-float 8s ease-in-out infinite reverse;
}

.pf-ai-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.pf-ai-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pf-ai-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pf-ai-hero-subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.5;
}

.pf-ai-hero-link {
  display: inline-block;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease-out;
  backdrop-filter: blur(10px);
}

.pf-ai-hero-link:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pf-ai-stage-curtain {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: #2e2e2e;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.pf-ai-stage-curtain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    #c81357 0px,
    #c81357 40px,
    #e40422 40px,
    #e40422 80px
  );
  opacity: 0.1;
  animation: pf-ai-curtain 1s ease-out forwards;
  transform-origin: left center;
}

.pf-ai-screenshot-section {
  padding: 80px 0;
  background: #eaf6f8;
}

.pf-ai-screenshot-wrapper {
  animation: pf-ai-fade-in-up 0.8s ease-out;
}

.pf-ai-info-section {
  padding: 80px 0;
  background: #ffffff;
}

.pf-ai-section-title {
  font-size: 42px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.pf-ai-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #c81357, #e49900);
  border-radius: 2px;
}

.pf-ai-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.pf-ai-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #eaf6f8;
  transition: all 0.5s ease-out;
  position: relative;
  overflow: hidden;
}

.pf-ai-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c81357, #e49900, #e40422);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease-out;
}

.pf-ai-info-card:hover::before {
  transform: scaleX(1);
}

.pf-ai-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(200, 19, 87, 0.15);
  border-color: #c81357;
}

.pf-ai-info-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #c81357;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.pf-ai-info-value {
  font-size: 20px;
  font-weight: 600;
  color: #2e2e2e;
}

.pf-ai-description {
  font-size: 18px;
  line-height: 1.8;
  color: #586782;
  margin-bottom: 40px;
}

.pf-ai-description strong {
  color: #c81357;
  font-weight: 600;
}

.pf-ai-color-palette {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: linear-gradient(135deg, #eaf6f8 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pf-ai-color-palette::before {
  content: '★';
  position: absolute;
  top: 10%;
  right: 15%;
  font-size: 120px;
  color: rgba(200, 19, 87, 0.05);
  animation: pf-ai-rotate-slow 20s linear infinite;
}

.pf-ai-color-palette-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.pf-ai-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pf-ai-color-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(88, 184, 203, 0.1);
  transition: all 0.5s ease-out;
  animation: pf-ai-fade-in-up 0.8s ease-out backwards;
}

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

.pf-ai-color-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(200, 19, 87, 0.25);
}

.pf-ai-color-swatch {
  height: 150px;
  position: relative;
  transition: height 0.5s ease-out;
}

.pf-ai-color-card:hover .pf-ai-color-swatch {
  height: 180px;
}

.pf-ai-color-info {
  padding: 20px;
  text-align: center;
}

.pf-ai-color-name {
  font-size: 18px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 5px;
}

.pf-ai-color-value {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  color: #949c9e;
  text-transform: uppercase;
}

.pf-ai-features-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.pf-ai-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.pf-ai-feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #eaf6f8 100%);
  padding: 40px;
  border-radius: 10px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-out;
  box-shadow: 0 2px 15px rgba(88, 184, 203, 0.1);
}

.pf-ai-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 19, 87, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease-out;
}

.pf-ai-feature-card:hover::before {
  top: -20%;
  right: -20%;
  background: radial-gradient(circle, rgba(228, 73, 0, 0.15) 0%, transparent 70%);
}

.pf-ai-feature-card:hover {
  transform: translateY(-10px) rotate(1deg);
  border-color: #c81357;
  box-shadow: 0 15px 50px rgba(200, 19, 87, 0.2);
}

.pf-ai-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c81357, #e49900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 25px;
  transition: all 0.5s ease-out;
  position: relative;
  z-index: 1;
}

.pf-ai-feature-card:hover .pf-ai-feature-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 25px rgba(200, 19, 87, 0.4);
}

.pf-ai-feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.pf-ai-feature-description {
  font-size: 16px;
  line-height: 1.7;
  color: #586782;
  position: relative;
  z-index: 1;
}

.pf-ai-tags-section {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: #2e2e2e;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pf-ai-tags-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 19, 87, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pf-ai-pulse 4s ease-in-out infinite;
}

.pf-ai-tags-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.pf-ai-tags-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
  text-align: center;
}

.pf-ai-tags-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-ai-tags-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #e49900;
  margin-bottom: 20px;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pf-ai-tags-content h4:first-child {
  margin-top: 0;
}

.pf-ai-tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.pf-ai-tag-list li {
  display: inline-block;
}

.pf-ai-tag-list a {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(200, 19, 87, 0.8), rgba(228, 73, 0, 0.8));
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pf-ai-tag-list a:hover {
  background: linear-gradient(135deg, #c81357, #e49900);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200, 19, 87, 0.4);
  text-decoration: none;
  color: #ffffff;
}

.pf-ai-cta-section {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: linear-gradient(135deg, #c81357 0%, #e40422 50%, #e49900 100%);
  background-size: 200% 200%;
  animation: pf-ai-gradient-shift 10s ease infinite;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pf-ai-cta-section::before {
  content: '🎭';
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 150px;
  opacity: 0.1;
  animation: pf-ai-float 7s ease-in-out infinite;
}

.pf-ai-cta-section::after {
  content: '🎪';
  position: absolute;
  bottom: 15%;
  right: 8%;
  font-size: 120px;
  opacity: 0.1;
  animation: pf-ai-float 9s ease-in-out infinite reverse;
}

.pf-ai-cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pf-ai-cta-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.3;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pf-ai-cta-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.pf-ai-btn-primary {
  display: inline-block;
  padding: 18px 45px;
  background: #ffffff;
  color: #c81357;
  border-radius: 25px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease-out;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pf-ai-btn-primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.pf-ai-btn-secondary {
  display: inline-block;
  padding: 18px 45px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease-out;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.pf-ai-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #ffffff;
}

@media (max-width: 991px) {
  .pf-ai-hero-title {
    font-size: 42px;
  }
  
  .pf-ai-hero-subtitle {
    font-size: 20px;
  }
  
  .pf-ai-section-title {
    font-size: 36px;
  }
  
  .pf-ai-cta-title {
    font-size: 38px;
  }
  
  .pf-ai-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .pf-ai-hero {
    padding: 60px 0 50px;
  }
  
  .pf-ai-hero-title {
    font-size: 32px;
  }
  
  .pf-ai-hero-subtitle {
    font-size: 18px;
  }
  
  .pf-ai-section-title {
    font-size: 28px;
  }
  
  .pf-ai-cta-title {
    font-size: 32px;
  }
  
  .pf-ai-cta-text {
    font-size: 18px;
  }
  
  .pf-ai-info-grid {
    grid-template-columns: 1fr;
  }
  
  .pf-ai-color-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .pf-ai-features-grid {
    grid-template-columns: 1fr;
  }
  
  .pf-ai-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .pf-ai-btn-primary,
  .pf-ai-btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .pf-ai-tags-content {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .pf-ai-hero-title {
    font-size: 28px;
  }
  
  .pf-ai-color-grid {
    grid-template-columns: 1fr;
  }
  
  .pf-ai-feature-card {
    padding: 30px 20px;
  }
  
  .pf-ai-cta-section::before,
  .pf-ai-cta-section::after {
    font-size: 80px;
  }
}
