/* Sections CSS */

/* Banner Section */
.banner-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(to bottom, var(--dark-gray), var(--black));
  padding-top: 80px; /* Account for header */
}

.abstract-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--space-4);
}

.banner-content h1 {
  font-size: var(--font-4xl);
  background: linear-gradient(45deg, var(--primary-pink-light), var(--accent-violet-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-3);
  animation: fadeInUp 1s ease;
}

.banner-content p {
  font-size: var(--font-lg);
  color: var(--light-gray);
  margin-bottom: var(--space-4);
  animation: fadeInUp 1.2s ease;
}

.banner-content .play-btn {
  animation: fadeInUp 1.4s ease;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--black), var(--mid-gray));
  text-align: center;
  padding: var(--space-6) var(--space-3);
}

.features-section h2 {
  margin-bottom: var(--space-5);
  background: linear-gradient(45deg, var(--secondary-teal-light), var(--primary-pink-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-4);
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  flex: 1 1 300px;
  max-width: 350px;
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform var(--speed-medium) ease;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 22, 148, 0.1), rgba(153, 0, 204, 0.1));
  z-index: -1;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-3) auto;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(45deg);
  transition: all var(--speed-medium) ease;
}

.feature:hover .feature-icon::before {
  transform: rotate(225deg);
}

.icon-1::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
  background: radial-gradient(circle, var(--primary-pink), transparent 70%);
  border-radius: 50%;
  animation: pulse 3s infinite alternate;
}

.icon-2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
  background: conic-gradient(
    var(--secondary-teal),
    var(--accent-violet),
    var(--primary-pink),
    var(--secondary-teal)
  );
  border-radius: 50%;
  animation: rotate 8s linear infinite;
}

.icon-3::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
  background: linear-gradient(45deg, var(--accent-orange), var(--accent-violet));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: float 5s infinite alternate;
}

.feature h3 {
  color: var(--white);
  margin-bottom: var(--space-2);
}

.feature p {
  color: var(--light-gray);
  font-size: var(--font-md);
  line-height: 1.6;
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(to right, var(--dark-gray), var(--black));
  padding: var(--space-6) var(--space-3);
}

.about-art {
  flex: 1 1 400px;
  height: 400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.about-art::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--primary-pink-dark),
    var(--accent-violet-dark),
    var(--secondary-teal-dark),
    var(--accent-orange-dark)
  );
  opacity: 0.7;
  animation: gradientShift 10s infinite alternate;
}

.about-art::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 30%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 15s infinite alternate;
}

.about-content {
  flex: 1 1 500px;
  padding: var(--space-4);
}

.about-content h2 {
  background: linear-gradient(45deg, var(--accent-orange-light), var(--accent-violet-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-4);
}

.about-content p {
  color: var(--light-gray);
  font-size: var(--font-md);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--mid-gray), var(--dark-gray));
  padding: var(--space-6) var(--space-3);
  text-align: center;
}

.contact-section h2 {
  margin-bottom: var(--space-5);
  background: linear-gradient(45deg, var(--primary-pink-light), var(--secondary-teal-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: var(--space-4);
}

.contact-form {
  flex: 1 1 500px;
  padding: var(--space-3);
}

.form-group {
  margin-bottom: var(--space-4);
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: var(--space-2);
  color: var(--white);
  font-size: var(--font-md);
  font-family: var(--font-primary);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--light-gray);
  transition: all var(--speed-medium) ease;
}

.form-group input:focus + .input-line,
.form-group textarea:focus + .input-line {
  height: 2px;
  background: linear-gradient(90deg, var(--primary-pink), var(--accent-violet));
}

.contact-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-4);
}

.info-icon {
  width: 40px;
  height: 40px;
  margin-right: var(--space-3);
  position: relative;
}

.info-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all var(--speed-fast) ease;
}

.info-item:hover .info-icon::before {
  transform: rotate(15deg);
  background: rgba(255, 22, 148, 0.1);
}

.email-icon::after {
  content: '@';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-pink-light);
  font-size: var(--font-lg);
  font-weight: bold;
}

.location-icon::after {
  content: '⦿';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary-teal-light);
  font-size: var(--font-lg);
  font-weight: bold;
}

.social-icon::after {
  content: '#';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-violet-light);
  font-size: var(--font-lg);
  font-weight: bold;
}

.info-item p {
  color: var(--light-gray);
  margin: 0;
}

.social-links {
  display: flex;
  gap: var(--space-2);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all var(--speed-fast) ease;
}

.social-link:hover {
  background: rgba(255, 22, 148, 0.2);
  transform: translateY(-3px);
}

@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

@keyframes morphShape {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; }
  50% { border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%; }
  75% { border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

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