/* ==========================================
   PiCaSSo Section-Specific Styles
   ========================================== */

/* Section Base Classes */
.section-white {
  background: white;
  padding: 0;
}

.section-content {
  background: white;
  padding: 60px 0;
}

.section-light {
  background: var(--bg-light);
  padding: 60px 0;
}

.container-content {
  padding: 50px;
}

/* Section Typography */
.section-title-main {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
}

.section-title-main.center {
  text-align: center;
  margin-bottom: 1rem;
  width: auto;
}

.section-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-text);
}

.section-description-center {
  font-size: 1.1rem;
  color: var(--light-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Images */
.image-rounded {
  width: 100%;
  border-radius: 15px;
}

/* Page Headers */
.team-header,
.documents-header {
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 20%, var(--secondary-color) 80%);
  padding: 4rem 2rem;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  right: 50%;
  position: relative;
  width: 100vw;
  margin-top: 0;
}

.team-header h2,
.documents-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.team-header p,
.documents-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Partners Section */
.partners-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Documents Section */
.documents-section {
  margin-bottom: 4rem;
}

.documents-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-color);
}

.documents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.documents-placeholder {
  text-align: center;
  color: var(--light-text);
  padding: 3rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
}

/* Contact Section */
.contact-content-centered {
  max-width: 100%;
  margin: 0;
}

.contact-info-section {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  text-align: center;
}

.contact-emoji {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.contact-organization {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-email:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.contact-email svg {
  width: 24px;
  height: 24px;
}

.contact-additional {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(21, 31, 178, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
  text-align: left;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.contact-address {
  margin-bottom: 1.5rem;
  text-align: left;
}

.contact-address:last-child {
  margin-bottom: 0;
}

.contact-location-name {
  font-weight: 500;
  color: var(--dark-text);
  display: block;
  margin-bottom: 0.3rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-header h2,
  .documents-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-content,
  .section-light {
    padding: 40px 0;
  }
  
  .container-content {
    padding: 30px 15px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .documents-grid {
    grid-template-columns: 1fr;
  }
  
  .documents-section-title {
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .team-header h2,
  .documents-header h2 {
    font-size: 2rem;
  }
  
  .team-header p,
  .documents-header p {
    font-size: 1rem;
  }
  
  .contact-email {
    font-size: 1.2rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}