/* Management page specific styles
 *
 * Paste your /management/styles.css contents here.
 */
/* Management Page Specific Styles */
:root {
   --primary-color: #203557;
   --secondary-color: #719976;
   --black-color: #000000;
   --white-color: #ffffff;
   --gray-color: #808080;
   --dark-gray-color: #424242;
   --light-black-color: #212121;
   --light-white-color: #f5f5f5;
   --darker-white-color: #f9f9f9;
   --text-color: #212121;
 }
  
 .main.management-page {
   width: 100%;
   height: 100%;
   overflow-x: hidden;
 }
 
 /* Hero Section */
 .management-hero {
   width: 100%;
   height: 500px;
   max-height: 80vh;
   display: flex;
   flex-direction: column;
   position: relative;
   overflow: hidden;
   padding: 0 !important;
   margin: 0 !important;
   background-color: #f5f5f5;
 }
 
 .management-hero .hero-content {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 3;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .management-hero .hero-text {
   text-align: center;
   color: var(--white-color);
   width: 100%;
   padding: 2rem;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }
 
 .management-hero .hero-text h1 {
   font-size: 4rem;
   font-weight: 700;
   margin-bottom: 1rem;
   text-transform: uppercase;
   line-height: 1.1;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }
 
 .management-hero .hero-image {
   width: 100%;
   height: 100%;
   position: relative;
   z-index: 1;
 }
 
 .management-hero .hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(0.7) contrast(1.1);
 }
 
 .management-hero::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(
     135deg,
     rgba(32, 53, 87, 0.3) 0%,
     rgba(113, 153, 118, 0.2) 100%
   );
   z-index: 2;
 }
 
 /* Section Headers */
 .section-header {
   text-align: center;
   margin-bottom: 4rem;
   width: 100%;
 }
 
 .section-header h2 {
   font-size: 2.5rem;
   font-weight: 600;
   color: var(--primary-color);
   margin: 0 0 1rem 0;
   letter-spacing: 1px;
 }
 
 .section-header .separator {
   width: 100px;
   height: 3px;
   background-color: var(--secondary-color);
   margin: 0 auto 1.5rem auto;
 }
 
 .section-header p {
   font-size: 1.1rem;
   color: var(--gray-color);
   margin: 0;
   max-width: 600px;
   margin-left: auto;
   text-align: right;
 }
 
 @media (max-width: 768px) {
   .section-header p {
     text-align: center;
     margin-left: auto;
   }
 }
 
 /* Leadership Section */
 .leadership-section {
   width: 100%;
   padding: 6rem 0;
   background-color: var(--white-color);
 }
 
 .leadership-section .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
 }
 
 .leadership-section .section-header-title {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
   width: auto;
 }
 
 .leadership-section .section-header-title h2 {
   font-size: 2.5rem;
   font-weight: 600;
   color: var(--primary-color);
   margin: 0;
   padding-bottom: 1rem;
 }
 
 .leadership-section .section-header-title .separator {
   width: 200px !important;
   max-width: 100% !important;
   height: 3px;
   background-color: var(--secondary-color);
   margin: 0;
 }
 
 .leadership-section .section-header-title p {
   font-size: 1.1rem;
   color: var(--gray-color);
   margin: 0;
   max-width: 600px;
   margin: 0 auto;
 }
 
 .leadership-section .section-header-title .separator {
   width: 100px;
   height: 3px;
   background-color: var(--secondary-color);
   margin: 0;
 }
 
 .leadership-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 1rem;
   margin-top: 3rem;
   height: 100%;
   width: 100%;
 }
 
 .leader-card {
   background-color: var(--white-color);
   border-radius: 12px;
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
   overflow: hidden;
   transition: all 0.3s ease;
   border: 1px solid #e9ecef;
 
   height: 100%;
   width: 100%;
 
   box-sizing: border-box;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: center;
   gap: 0rem;
 }
 
 .leader-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }
 
 .leader-image {
   width: 100%;
   height: 350px;
   aspect-ratio: 5/4;
   overflow: hidden;
   position: relative;
 
   box-sizing: border-box;
   display: flex;
   justify-content: center;
   align-items: center;
 }
 
 @media (max-width: 768px) {
   .leader-image {
     height: auto;
     width: 100%;
     aspect-ratio: 1/1;
   }
 }
 
 .leader-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: top;
   transition: transform 0.3s ease;
 }
 
 .leader-card:hover .leader-image img {
   transform: scale(1.05);
 }
 
 .leader-info {
   padding: 2rem;
 
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: flex-start;
   gap: 0rem;
 
   width: 100%;
   height: calc(100% - 300px);
   box-sizing: border-box;
 }
 
 .leader-info-content {
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
   gap: 0rem;
 }
 
 .leader-info h3 {
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--primary-color);
   margin: 0 0 0.5rem 0;
 }
 
 .position {
   font-size: 1.1rem;
   color: var(--secondary-color);
   font-weight: 500;
   margin: 0 0 1rem 0;
 }
 
 .bio {
   font-size: 1rem;
   line-height: 1.6;
   color: var(--text-color);
   margin: 0 0 1rem 0;
 }
 
 .leader-social {
   display: flex;
   gap: 1rem;
 }
 
 .leader-social a {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   text-decoration: none;
   color: var(--secondary-color);
   transition: color 0.3s ease;
   padding: 0;
   margin: 0;
 }
 
 .leader-social span {
   font-size: 1rem;
   font-weight: 600;
   color: var(--secondary-color);
   text-decoration: none;
   transition: color 0.3s ease;
   padding: 0;
   margin: 0;
 }
 
 .leader-social i {
   width: 40px;
   height: 40px;
   background-color: var(--secondary-color);
   color: var(--white-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   transition: all 0.3s ease;
 }
 
 .leader-social i:hover {
   background-color: var(--primary-color);
   transform: translateY(-2px);
 }
 
 /* Responsive Design */
 @media (max-width: 768px) {
   .management-hero {
     height: 400px;
   }
 
   .management-hero .hero-text h1 {
     font-size: 2.5rem;
   }
 
   .leadership-section,
   .departments-section,
   .board-section {
     padding: 4rem 0;
   }
 
   .section-header h2 {
     font-size: 2rem;
   }
 
   .leadership-grid {
     grid-template-columns: 1fr;
     gap: 2rem;
   }
 
   .departments-grid {
     grid-template-columns: 1fr;
     gap: 1.5rem;
   }
 
   .board-grid {
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
   }
 
   .leader-info {
     padding: 1.5rem;
   }
 
   .department-card {
     padding: 2rem 1.5rem;
   }
 
   .board-member {
     padding: 1.5rem 1rem;
   }
 
   .board-image {
     width: 120px;
     height: 120px;
   }
 }
 
 @media (max-width: 480px) {
   .management-hero {
     height: 400px;
   }
 
   .management-hero .hero-text {
     padding: 0rem;
     margin-top: 2.5rem;
   }
 
   .management-hero .hero-text h1 {
     font-size: 2rem;
   }
 
   .leadership-section,
   .departments-section,
   .board-section {
     padding: 1.5rem 0 3rem 0;
   }
 
   .leadership-section .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0rem;
   }
 
   .section-header {
     padding: 0rem;
     margin-bottom: 1rem;
     box-sizing: border-box;
 
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 1rem;
   }
 
   .leadership-section .section-header-title {
     padding: 0rem;
     margin: 0rem;
     box-sizing: border-box;
 
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 1rem;
   }
 
   .leadership-section .section-header-title h2 {
     padding: 0rem;
   }
 
   .section-header h2 {
     font-size: 1.8rem;
     padding: 0rem;
   }
 
   .leadership-grid {
     padding: 0rem;
     margin: 0rem;
     box-sizing: border-box;
   }
 
   .leadership-grid,
   .departments-grid,
   .board-grid {
     grid-template-columns: 1fr;
   }
 
   .leader-info h3 {
     font-size: 1.3rem;
   }
 
   .department-card h3 {
     font-size: 1.2rem;
   }
 
   .board-member h4 {
     font-size: 1.1rem;
   }
 }
 
 /* Animation for cards */
 .leader-card,
 .department-card,
 .board-member {
   opacity: 0;
   transform: translateY(30px);
   animation: fadeInUp 0.6s ease forwards;
 }
 
 .leader-card:nth-child(1) {
   animation-delay: 0.1s;
 }
 
 .leader-card:nth-child(2) {
   animation-delay: 0.2s;
 }
 
 .leader-card:nth-child(3) {
   animation-delay: 0.3s;
 }
 
 .department-card:nth-child(1) {
   animation-delay: 0.1s;
 }
 
 .department-card:nth-child(2) {
   animation-delay: 0.2s;
 }
 
 .department-card:nth-child(3) {
   animation-delay: 0.3s;
 }
 
 .department-card:nth-child(4) {
   animation-delay: 0.4s;
 }
 
 .department-card:nth-child(5) {
   animation-delay: 0.5s;
 }
 
 .department-card:nth-child(6) {
   animation-delay: 0.6s;
 }
 
 .board-member:nth-child(1) {
   animation-delay: 0.1s;
 }
 
 .board-member:nth-child(2) {
   animation-delay: 0.2s;
 }
 
 .board-member:nth-child(3) {
   animation-delay: 0.3s;
 }
 
 .board-member:nth-child(4) {
   animation-delay: 0.4s;
 }
 
 @keyframes fadeInUp {
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }
 
 /* Focus states for accessibility */
 /* .leader-social a:focus,
 .department-card:focus-within,
 .board-member:focus-within {
   outline: 2px solid var(--secondary-color);
   outline-offset: 2px;
 } */
 
 /* Print styles */
 @media print {
   .management-hero {
     height: auto;
     min-height: 200px;
   }
 
   .leader-social,
   .department-card:hover,
   .board-member:hover {
     display: none;
   }
 
   .leader-card,
   .department-card,
   .board-member {
     box-shadow: none;
     border: 1px solid #ccc;
     break-inside: avoid;
   }
 }
 
