/* Import base styles from main stylesheet */
@import url("style.css");

/* Page Header Styles */
.page-header {
  background: linear-gradient(to bottom, #6aaed880 0%, #f8f8f8 17.5%);
  color: #333;
  padding: 6rem 5% 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crown" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" font-size="12" text-anchor="middle" fill="rgba(255,215,0,0.1)">👑</text></pattern></defs><rect width="100" height="100" fill="url(%23crown)"/></svg>');
  opacity: 0.1;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-header .label {
  display: inline-block;
  background: rgba(106, 174, 216, 0.1);
  color: #6aaed8;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(106, 174, 216, 0.3);
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  margin-bottom: 1.5rem;
  color: #090a04;
}

.page-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Council of Chiefs Section */
#Council-of-chiefs {
  padding: 4rem 5%;
  background: #ffffff;
  color: #333;
}

.chiefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.chiefs-container {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #c19f32;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.chiefs-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-left-color: #6aaed8;
}

.chiefs-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #c19f32 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.chiefs-container:hover::before {
  opacity: 1;
}

.chiefs-container img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.chiefs-container:hover img {
  border-color: #6aaed8;
  transform: scale(1.05);
}

.chief-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.chief-title,
.chief-Name {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid #e9ecef;
  transition: all 0.3s ease;
}

.chiefs-container:hover .chief-title,
.chiefs-container:hover .chief-Name {
  background: #f0f8ff;
  border-left-color: #6aaed8;
}

.chief-title h3,
.chief-Name h3 {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.chief-title p,
.chief-Name p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.chief-designation {
  background: linear-gradient(135deg, #c19f32 0%, #d4af37 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(193, 159, 50, 0.3);
  transition: all 0.3s ease;
}

.chiefs-container:hover .chief-designation {
  background: linear-gradient(135deg, #6aaed8 0%, #5a9bc8 100%);
  box-shadow: 0 4px 12px rgba(106, 174, 216, 0.4);
  transform: translateY(-2px);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #6aaed8 0%, #5a9bc8 100%);
  color: white;
  padding: 2rem 0 1rem;
  margin-top: 3rem;
  text-align: center;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-text {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.developer-credit {
  font-size: 0.85rem;
  opacity: 0.8;
}

.developer-link {
  color: #1307fd;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.developer-link:hover {
  color: #1307fd;
  border-bottom-color: #ffd700;
  transform: translateY(-1px);
}

.footer-divider {
  width: 50px;
  height: 2px;
  background: #ffd700;
  margin: 1rem auto;
  border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 4rem 3% 3rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-intro {
    font-size: 1.1rem;
  }

  #Council-of-chiefs {
    padding: 2rem 3%;
  }

  .chiefs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .chiefs-container {
    padding: 1.5rem;
  }

  .chiefs-container img {
    width: 80px;
    height: 80px;
  }

  .chief-info-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .chief-title h3,
  .chief-Name h3 {
    font-size: 0.8rem;
  }

  .chief-title p,
  .chief-Name p {
    font-size: 1rem;
  }

  .site-footer {
    padding: 1.5rem 0 1rem;
    margin-top: 2rem;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .developer-credit {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .chiefs-container {
    padding: 1rem;
  }

  .chiefs-container img {
    width: 70px;
    height: 70px;
  }

  .chief-title,
  .chief-Name {
    padding: 0.6rem;
  }
}
