/* about.css - Styles for About page */

/* Hero Section */
.about-hero {
  background: transparent;
  color: #fff;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .about-hero {
    padding: 5rem 0 4rem;
    margin-bottom: 4rem;
  }
}

.about-hero-container { 
  max-width: 1000px; 
  margin: 0 auto; 
  padding: 0 1rem; 
}

@media (min-width: 640px) {
  .about-hero-container {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .about-hero-container {
    padding: 0 3rem;
  }
}

.about-hero-title { 
  font-size: 2rem; 
  line-height: 1.1; 
  margin-bottom: 1.5rem; 
  font-weight: 700; 
  letter-spacing: -0.03em;
  color: white;
  text-align: center;
}

@media (min-width: 768px) {
  .about-hero-title {
    font-size: 2.75rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .about-hero-title {
    font-size: 3.25rem;
  }
}

.about-hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

@media (min-width: 768px) {
  .about-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Content Sections */
.about-section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }
}

.about-section:last-of-type {
  border-bottom: none;
}

.about-section-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .about-section-container {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .about-section-container {
    padding: 0 3rem;
  }
}

.about-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-align: center;
}

@media (min-width: 768px) {
  .about-section-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.about-section-content {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
}

@media (min-width: 768px) {
  .about-section-content {
    font-size: 1.125rem;
    line-height: 1.9;
  }
}

.about-section-content p {
  margin-bottom: 1rem;
}

.about-section-content p:last-child {
  margin-bottom: 0;
}

/* CTA Section */
.about-cta-section {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .about-cta-section {
    padding: 5rem 0 4rem;
  }
}

.about-cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .about-cta-container {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .about-cta-container {
    padding: 0 3rem;
  }
}

.about-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .about-cta-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

.about-cta-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .about-cta-items {
    flex-direction: row;
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

.about-cta-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cta-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.about-cta-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .about-cta-item-title {
    font-size: 1.375rem;
  }
}

.about-cta-item-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-cta-item-description {
    font-size: 1rem;
  }
}

.about-cta-btn {
  background: white;
  color: #040b1d;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.about-cta-btn:hover {
  background: rgb(243, 244, 246);
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.75rem;
  }
  
  .about-hero-subtitle {
    font-size: 1rem;
  }
  
  .about-section-title {
    font-size: 1.5rem;
  }
  
  .about-section-content {
    font-size: 1rem;
  }
  
  .about-cta-title {
    font-size: 1.5rem;
  }
  
  .about-cta-item {
    padding: 1.5rem 1.25rem;
  }
  
  .about-cta-item-title {
    font-size: 1.125rem;
  }
  
  .about-cta-item-description {
    font-size: 0.875rem;
  }
}
