/* RESET */
body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f5f7fb;
}

/* HEADER */
.top-header{
background:#0c3c78;
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 20px;
flex-wrap:wrap;
position:sticky;
top:0;
z-index:999;
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:white;
font-weight:bold;
font-size:16px;
}

.logo img{
height:55px;
width:auto;
}

.logo span{
line-height:1.2;
}

/* NAVIGATION */
nav{
display:flex;
align-items:center;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:500;
}

nav a:hover{
text-decoration:underline;
}

/* MOBILE MENU BUTTON */
.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
color:white;
}

/* HERO SECTION */
.hero{
background:#f1f4fa;
padding:60px 20px;
text-align:center;
color:#0c3c78;
}

.hero h1{
margin:0;
font-size:28px;
}

.hero p{
margin-top:10px;
}

/* SECTIONS */
.about{
padding:40px;
text-align:center;
background:white;
}

.events{
padding:40px;
}

/* CARD GRID */
.card-grid{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.card{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
border-radius:8px;
overflow:hidden;
width:31%;
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card h3{
padding:10px;
margin:0;
}

.card p{
padding:0 10px 10px;
}

/* BRANCH CARD */
.branch-card{
padding:15px;
}

.branch-body h3{
margin-top:0;
color:#0c3c78;
}

.branch-body p{
margin:5px 0;
font-size:14px;
}

.branch-card:hover{
transform:translateY(-5px);
transition:0.3s;
}

/* BUTTON */
.btn{
background:#0c3c78;
color:white;
padding:8px 18px;
text-decoration:none;
border-radius:5px;
display:inline-block;
}

.btn:hover{
background:#082a55;
}

/* TABLE */
table{
width:100%;
border-collapse:collapse;
background:white;
}

table th{
background:#0c3c78;
color:white;
padding:10px;
text-align:left;
}

table td{
padding:10px;
border-bottom:1px solid #eee;
}

/* FOOTER */
.footer{
background:#0c3c78;
color:white;
padding:40px 20px 20px;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;
}

.footer-col{
width:23%;
}

.footer-col h3{
margin-top:0;
margin-bottom:15px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
}

.footer-col ul{
list-style:none;
padding:0;
margin:0;
}

.footer-col ul li{
margin-bottom:8px;
}

.footer-col ul li a{
color:white;
text-decoration:none;
}

.footer-col ul li a:hover{
text-decoration:underline;
}

.social a{
display:block;
color:white;
text-decoration:none;
margin-bottom:5px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.2);
margin-top:20px;
padding-top:15px;
text-align:center;
font-size:14px;
}

/* PAGE BANNER */
.page-banner{
background:#0c3c78;
color:white;
text-align:center;
padding:40px 20px;
}

.page-banner h1{
margin:0;
font-size:28px;
}

.page-banner p{
margin-top:8px;
opacity:0.9;
}

/* AIMYM SECTION */
.aimym-section{
padding:40px 20px;
background:#f5f7fb;
}

.aimym-container{
display:flex;
gap:30px;
}

.aimym-content{
width:70%;
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.aimym-content h3{
margin-top:0;
color:#0c3c78;
font-size:22px;
}

.aimym-content p{
line-height:1.7;
font-size:15px;
color:#333;
}

.aimym-menu{
width:30%;
}

.aimym-item{
background:white;
padding:15px;
margin-bottom:10px;
cursor:pointer;
border-radius:6px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
transition:0.3s;
}

.aimym-item:hover{
background:#f0f4ff;
}

.aimym-item.active{
background:#0c3c78;
color:white;
}

.aimym-box{
display:none;
}

.aimym-box.active{
display:block;
animation:fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* MOBILE RESPONSIVE */
@media (max-width:768px){

.menu-toggle{
display:block;
}

nav{
display:none;
flex-direction:column;
width:100%;
background:#0c3c78;
}

nav.active{
display:flex;
}

nav a{
margin:10px 0;
padding:5px 0;
}

.top-header{
flex-direction:column;
align-items:flex-start;
}

.logo img{
height:45px;
}

.hero{
padding:40px 15px;
}

.hero h1{
font-size:22px;
}

.card-grid{
flex-direction:column;
}

.card{
width:100%;
}

.footer-col{
width:100%;
}

.aimym-container{
flex-direction:column;
}

.aimym-content,
.aimym-menu{
width:100%;
}

.about,
.events{
padding:20px;
}

table{
font-size:14px;
}

}
/* AIMYM BANNER */
.banner-aimym{
background:url('../assets/aimym-banner.jpg') no-repeat center;
background-size:cover;
height:260px;
position:relative;
}

.banner-overlay{
background:rgba(0,0,0,0.5);
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.banner-overlay h1{
font-size:32px;
margin:0;
}

.banner-overlay p{
margin-top:8px;
font-size:16px;
}

/* MORE PROFESSIONAL */
.aimym-content{
border-left:4px solid #0c3c78;
}

.aimym-item{
font-weight:600;
}

.aimym-item.active{
box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
/* INTRO BLOCK */
.aimym-intro{
background:white;
padding:50px 20px;
text-align:center;
}

.intro-container{
max-width:1000px;
margin:auto;
}

.intro-container h2{
color:#0c3c78;
margin-bottom:15px;
}

.intro-container p{
line-height:1.7;
margin-bottom:30px;
}

.intro-highlights{
display:flex;
gap:20px;
justify-content:center;
}

.highlight-box{
background:#f5f7fb;
padding:20px;
border-radius:8px;
width:33%;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.highlight-box h4{
margin-top:0;
color:#0c3c78;
}

/* mobile */
@media(max-width:768px){
.intro-highlights{
flex-direction:column;
}

.highlight-box{
width:100%;
}
}
.banner-aimym{
background:url('../assets/aimym-banner.jpg') no-repeat center;
background-size:cover;
height:260px;
}
.directory-card{
padding:15px;
}

.dir-header{
display:flex;
gap:15px;
align-items:center;
border-bottom:1px solid #eee;
padding-bottom:10px;
margin-bottom:10px;
}

.dir-logo{
width:60px;
height:60px;
object-fit:contain;
}

.tagline{
font-size:13px;
color:#777;
margin:0;
}

.dir-body p{
margin:4px 0;
font-size:14px;
}

.admin-container{
background:white;
padding:25px;
margin:20px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
border-radius:8px;
}

.admin-container input{
padding:10px;
border:1px solid #ccc;
margin-right:10px;
}