body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background: linear-gradient(135deg, #071c2f, #0d2d4d);
    color: white;
}

/* HEADER - handled by nav.js + nav.css */
header:not(.site-header) { display: none; }
.logo img { display: none; }

/* PATRON SECTION */
.patron-section{
  position: relative;
  bottom: 80px;
  display:flex;
  justify-content:center;
  gap:100px;
  padding:65px 0;
  flex-direction: column;
}
.patron{
  justify-content: center;align-items: center;
    display: flex;
  flex-direction: column;
}
.patron img{
  width:250px;
  height:250px;
  border-radius:50%;
  object-fit:cover;

}

.patron h3{
  text-align:center;
  margin-top:15px;
}

.patron p{
  text-align:center;
  color:#2a6df4;
  font-weight:600;
}

.container{
    width:90%;
    margin:auto;
    padding:60px 0;
}

h1{
    font-size:48px;
    text-align: center;
}

h1 span{
    color:#2f6df6;
}

/* YEAR BUTTONS */

.year-buttons{
    width: 400px;
    display: flex;
    flex-direction: row;
    gap: 22px;

}

.year-btn{
    display:block;
    margin:10px 0;
    padding:20px 20px;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:8px;
    cursor:pointer;
    background:transparent;
    font-weight:600;
}

.year-btn.active{
    background: linear-gradient(90deg, #00d4ff, #00ffcc);
    color:rgb(17, 1, 1);
}

.year-btn:hover{
   transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25);
  transition: 0.3s ease;
}

/* EXECUTIVE GRID */

.executive-container{
    display:none;
    position: relative;
    top: 30px;
}

.executive-container.active{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    animation:fadeIn 0.5s ease;
}

.card{
     background:transparent;
     border:1px solid rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

.card:hover {
 transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25);
}
/* IMAGE HOVER EFFECT */

.image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 12px; /* small rounded corners */
    overflow: hidden;
    cursor: pointer;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    opacity: 0;
    transition: 0.3s;
}

.image-wrapper:hover img{
    filter:blur(1px);
    transform:scale(1.05);
}

.image-wrapper:hover .overlay{
    opacity:1;
}

/* TEXT */

.position{
    color:#2f6df6;
    font-weight:600;
}

.department{
    font-size:14px;
    color:#555;
}

/* MODAL */

.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    animation:fadeIn 0.3s ease;
}

.modal-content{
     background: rgba(255, 255, 255, 0.08);  /* transparent */
    backdrop-filter: blur(15px);
   -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding:30px;
    width:350px;
    border-radius:12px;
    text-align:center;
    animation: popup 0.6s ease;
}

.modal-content img{
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.close{
    float:right;
    font-size:22px;
    cursor:pointer;
}

.social-icons {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: 0.4s ease;
}

.image-wrapper:hover .social-icons {
    opacity: 1;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: white;
    color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
}

@keyframes popup {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.floating-blur {
  position: absolute;
  max-width: 100%;
  width: 300px;
  height: 300px;
  background: rgba(0, 212, 255, 0.2);
  filter: blur(120px);
  top: 20%;
  left: 0%;
  animation: floatMove 8s ease-in-out infinite alternate;
}

.blur2 {
  background: rgba(0, 255, 204, 0.2);
  top: 80%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes floatMove {
  from { transform: translateY(0px); }
  to { transform: translateY(-60px); }
}
/* ===================== RESPONSIVE ===================== */

body {
  padding-top: 80px;
}

.patron-section {
  position: static;
  flex-wrap: wrap;
  gap: 50px;
  padding: 40px 5%;
}

.container {
  padding: 40px 5%;
}

@media (max-width: 900px) {
  .patron-section {
    gap: 40px;
  }
  .patron img {
    width: 200px;
    height: 200px;
  }
  h1 {
    font-size: 36px;
  }
  .year-buttons {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .patron-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .patron img {
    width: 160px;
    height: 160px;
  }
  h1 {
    font-size: 26px;
  }
  .year-buttons {
    gap: 12px;
  }
  .year-btn {
    padding: 12px 14px;
    font-size: 13px;
  }
  .modal-content {
    width: 90%;
  }
}
