/* About Us Page Specific Styles */

/* History and Mission Sections */
.ypads-content-section {
  padding: 4rem 20px;
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.ypads-section-title {
  font-size: 48px;
  font-weight: 700;
  color: #d4af37; /* Golden-yellow color */
  margin: 0 0 2rem 0;
  font-family: "Bricolage Grotesque", sans-serif;
}

/* History Section Specific Styles */
.ypads-history-section .ypads-section-title {
  font-size: 36px;
  color: #daae6b;
}

.ypads-history-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: start;
}

.ypads-history-text {
  font-size: 18px;
  line-height: 1.6;
  color: #781c1b;
  font-family: "Libre Franklin", sans-serif;
}

.ypads-history-text p {
  margin: 0;
}

.ypads-history-images {
  display: block;
}

.ypads-history-image-box {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  box-shadow: 0 4px 12px var(--ypads-shadow);
  max-width: 100%;
  width: 100%;
}

.ypads-history-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ypads-mission-section {
  padding-top: 3rem;
}

/* Mission Section Specific Styles */
.ypads-mission-section .ypads-section-title {
  font-size: 36px;
  color: #daae6b;
}

.ypads-mission-content {
  max-width: 100%;
  width: 100%;
}

.ypads-mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ypads-mission-list li {
  font-size: 18px;
  line-height: 1.6;
  color: #781c1b;
  padding-left: 0;
  font-family: "Bricolage Grotesque", sans-serif;
}

/* Meet the YPADS Heads Section */
.ypads-heads-section {
  position: relative;
  overflow: hidden;
}

.ypads-heads-honeycomb {
  position: absolute;
  width: 200px;
  height: auto;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.ypads-heads-honeycomb-top {
  top: -50px;
  right: -50px;
  transform: rotate(45deg);
}

.ypads-heads-honeycomb-bottom {
  bottom: -50px;
  left: -50px;
  transform: rotate(-45deg);
}

.ypads-heads-section .ypads-container {
  position: relative;
  z-index: 1;
}

.ypads-heads-title {
  font-size: 36px;
  font-weight: 700;
  color: #daae6b;
  margin: 0 0 0.5rem 0;
  font-family: "Libre Baskerville", serif;
  text-align: center;
}

.ypads-heads-subtitle {
  font-size: 18px;
  color: #781c1b;
  margin: 0 0 3rem 0;
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
}

.ypads-heads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ypads-head-card {
  background: var(--ypads-paper);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px var(--ypads-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ypads-head-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ypads-head-image {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--ypads-shadow);
}

.ypads-head-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ypads-head-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ypads-head-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ypads-text);
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.ypads-head-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ypads-head-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--ypads-text);
  font-family: "Montserrat", sans-serif;
}

.ypads-head-icon {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex-shrink: 0;
}

.ypads-head-item a {
  color: var(--ypads-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ypads-head-item a:hover {
  color: var(--ypads-brand);
}

/* Meet the YPADS Officers Section */
.ypads-officers-section {
  position: relative;
  overflow: hidden;
}

.ypads-officers-honeycomb {
  position: absolute;
  width: 200px;
  height: auto;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.ypads-officers-honeycomb-bottom {
  bottom: -50px;
  right: -50px;
  transform: rotate(45deg);
}

.ypads-officers-section .ypads-container {
  position: relative;
  z-index: 1;
}

.ypads-officers-title {
  font-size: 36px;
  font-weight: 700;
  color: #daae6b;
  margin: 0 0 0.5rem 0;
  font-family: "Libre Baskerville", serif;
  text-align: center;
}

.ypads-officers-subtitle {
  font-size: 18px;
  color: #781c1b;
  margin: 0 0 3rem 0;
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
}

.ypads-officers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ypads-officer-card {
  background: var(--ypads-paper);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px var(--ypads-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ypads-officer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ypads-officer-image {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--ypads-shadow);
}

.ypads-officer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ypads-officer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ypads-officer-name {
  font-size: 21.9px;
  font-weight: 700;
  color: var(--ypads-text);
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
}

.ypads-officer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ypads-officer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 15.7px;
  color: var(--ypads-text);
  font-family: "Bricolage Grotesque", sans-serif;
}

.ypads-officer-icon {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex-shrink: 0;
}

.ypads-officer-item a {
  color: var(--ypads-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ypads-officer-item a:hover {
  color: var(--ypads-brand);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .ypads-history-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ypads-section-title {
    font-size: 36px;
  }
  
  .ypads-history-section .ypads-section-title {
    font-size: 36px;
  }
  
  .ypads-mission-section .ypads-section-title {
    font-size: 36px;
  }
  
  .ypads-heads-title {
    font-size: 36px;
  }
  
  .ypads-heads-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ypads-officers-title {
    font-size: 36px;
  }
  
  .ypads-officers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .ypads-content-section {
    padding: 2rem 20px;
  }
  
  .ypads-section-title {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }
  
  .ypads-history-section .ypads-section-title {
    font-size: 32px;
  }
  
  .ypads-mission-section .ypads-section-title {
    font-size: 32px;
  }
  
  .ypads-heads-title {
    font-size: 32px;
  }
  
  .ypads-mission-list {
    gap: 1rem;
  }
  
  .ypads-mission-list li {
    font-size: 14px;
  }
  
  .ypads-heads-title {
    font-size: 28px;
  }
  
  .ypads-heads-subtitle {
    font-size: 16px;
    margin-bottom: 2rem;
  }
  
  .ypads-head-card {
    padding: 1.25rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .ypads-head-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
  
  .ypads-head-name {
    font-size: 18px;
  }
  
  .ypads-head-item {
    font-size: 13px;
    justify-content: center;
  }
  
  .ypads-officers-title {
    font-size: 32px;
  }
  
  .ypads-officers-subtitle {
    font-size: 16px;
    margin-bottom: 2rem;
  }
  
  .ypads-officer-card {
    padding: 1.25rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .ypads-officer-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
  
  .ypads-officer-name {
    font-size: 19px;
  }
  
  .ypads-officer-item {
    font-size: 14px;
    justify-content: center;
  }
}

