/* =========================
   Global Reset
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#222;
}

/* ===========================
   HEADER / NAVBAR
=========================== */

.header{
    position:sticky;
    top:0;
    z-index:9999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 8%;

    background:rgba(11,93,30,.96);
    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.15);
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:65px;
    height:65px;
    object-fit:cover;
    border-radius:50%;
    background:#fff;
    padding:3px;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.club-name h1{
    margin:0;
    color:#fff;
    font-size:28px;
    font-weight:700;
    line-height:1.2;
}

.club-name p{
    margin-top:4px;
    color:#d8f3dc;
    font-size:14px;
}

/* Navbar */

.navbar ul{
    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
    margin:0;
    padding:0;
}

.navbar ul a{
    text-decoration:none;
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    position:relative;
}

.navbar ul a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#ffd54f;
    transition:.3s;
}

.navbar ul a:hover{
    color:#ffd54f;
}

.navbar ul a:hover::after{
    width:100%;
}

/* Admin Button */

.admin-link{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
    position:relative;
}

.admin-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#ffd54f;
    transition:.3s;
}

.admin-link:hover{
    color:#ffd54f;
}

.admin-link:hover::after{
    width:100%;
}

/* Dark Mode Button */

#darkModeBtn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;

    background:#fff;
    cursor:pointer;

    font-size:20px;

    transition:.3s;
}

#darkModeBtn:hover{
    transform:rotate(20deg) scale(1.1);
}




.notice-bar{
    background:#ffd700;
    color:#000;
    padding:10px 0;
    font-weight:600;
    font-size:16px;
    border-bottom:2px solid #0b5d1e;
}

.notice-bar marquee{
    width:100%;
}
/* =========================
   About Section
========================= */

.about{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:80px 8%;
    background:#fff;
}

.about-image img{
    width:450px;
    max-width:100%;
    border-radius:15px;
}

.about-content{
    flex:1;
}

.about-content h2{
    font-size:40px;
    color:#0b5d1e;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.about-boxes{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.box{
    background:#f8f8f8;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.box h3{
    margin-bottom:10px;
    color:#0b5d1e;
}
/* =========================
   Statistics Section
========================= */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:80px 8%;
    background:#0b5d1e;
}

.stat-card{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card h2{
    font-size:42px;
    color:#0b5d1e;
    margin-bottom:10px;
}

.stat-card p{
    font-size:18px;
    color:#555;
}
/* =========================
   Leadership Section
========================= */

.leadership{
    padding:80px 8%;
    background:#f8f9fa;
    text-align:center;
}

.section-title{
    font-size:36px;
    color:#0b5d1e;
    margin-bottom:40px;
}

.leaders,
.executives{
    display:grid;
    gap:25px;
}

.leaders{
    grid-template-columns:repeat(4,1fr);
    margin-bottom:40px;
}

.executives{
    grid-template-columns:repeat(3,1fr);
}

.executive-title{
    margin:30px 0;
    color:#0b5d1e;
}

.leader-card{
    background:#fff;
    border-radius:15px;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.leader-card:hover{
    transform:translateY(-8px);
}

.leader-card img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.leader-card h3,
.leader-card h4{
    color:#0b5d1e;
    margin-bottom:8px;
}
/* =========================
   Activities Section
========================= */

.activities{
    padding:80px 8%;
    text-align:center;
    background:#ffffff;
}

.activity-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin:40px 0;
}

.activity-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.activity-card:hover{
    transform:translateY(-8px);
}

.activity-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.activity-card h3{
    margin:15px 0 10px;
    color:#0b5d1e;
}

.activity-card p{
    padding:0 15px 20px;
    color:#555;
}

.btn{
    display:inline-block;
    padding:12px 28px;
    background:#0b5d1e;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.btn:hover{
    background:#084816;
}
/* =========================
   Gallery Preview
========================= */

.gallery-preview{
    padding:80px 8%;
    background:#f8f9fa;
    text-align:center;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:40px 0;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:12px;
    transition:.3s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}
/* =========================
   Contact Section
========================= */

.contact{
    padding:80px 8%;
    background:#ffffff;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.contact-info h3{
    color:#0b5d1e;
    margin-bottom:20px;
}

.contact-info p{
    margin:12px 0;
    font-size:17px;
    color:#555;
}

.contact-map iframe{
    border-radius:15px;
}
/* =========================
   Footer
========================= */

.footer{
    background:#0b5d1e;
    color:#fff;
    padding:60px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer h3{
    margin-bottom:15px;
}

.footer a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin:8px 0;
}

.footer a:hover{
    text-decoration:underline;
}

.footer hr{
    margin:30px 0 20px;
    border:1px solid rgba(255,255,255,.2);
}

.copyright{
    text-align:center;
    font-size:15px;
}
#topBtn{
    position:fixed;
    bottom:20px;
    right:20px;
    display:none;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#0b5d1e;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}
/* =========================
   Preloader
========================= */

#preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.loader{
    width:60px;
    height:60px;
    border:6px solid #ddd;
    border-top:6px solid #0b5d1e;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}
/* =========================
   About Page
========================= */

.page-banner{
    background:#0b5d1e;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.about-club{
    padding:60px 8%;
    text-align:center;
}

.mission-vision{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    padding:40px 8% 80px;
}

.mission-box,
.vision-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.mission-box h2,
.vision-box h2{
    color:#0b5d1e;
    margin-bottom:15px;
}
/* =========================
   Our Values
========================= */

.values{
    padding:80px 8%;
    background:#f8f9fa;
    text-align:center;
}

.values-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.value-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card h3{
    color:#0b5d1e;
    margin-bottom:15px;
}
/* =========================
   Achievements
========================= */

.achievements{
    padding:80px 8%;
    text-align:center;
    background:#ffffff;
}

.achievement-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.achievement-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.achievement-card:hover{
    transform:translateY(-8px);
}

.achievement-card h3{
    color:#0b5d1e;
    margin-bottom:15px;
}
/* =========================
   Registration Details
========================= */

.registration-details{
    padding:80px 8%;
    background:#f8f9fa;
    text-align:center;
}

.registration-card{
    max-width:700px;
    margin:40px auto 0;
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    text-align:left;
}

.registration-card p{
    margin:15px 0;
    font-size:17px;
    line-height:1.7;
}

.registration-card strong{
    color:#0b5d1e;
}
/* =========================
   President Message
========================= */

.president-message{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:40px;
    padding:80px 8%;
    align-items:center;
    background:#ffffff;
}

.president-image img{
    width:100%;
    max-width:300px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.president-text h2{
    color:#0b5d1e;
    margin-bottom:20px;
}

.president-text h3{
    margin-top:25px;
    color:#0b5d1e;
}
/* =========================
   Members Tools
========================= */

.member-tools{
    padding:50px 8%;
    text-align:center;
}

#searchBox{
    width:100%;
    max-width:500px;
    padding:12px 18px;
    border:2px solid #0b5d1e;
    border-radius:10px;
    font-size:16px;
    margin-bottom:20px;
}

.filter-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.filter-buttons button{
    padding:10px 20px;
    border:none;
    border-radius:8px;
    background:#0b5d1e;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.filter-buttons button:hover{
    background:#084816;
}
/* =========================
   Member Cards
========================= */

.members-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    padding:20px 8% 80px;
}

.member-card{
    background:#fff;
    border-radius:15px;
    padding:20px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.member-card:hover{
    transform:translateY(-8px);
}

.member-card img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.member-card h3{
    color:#0b5d1e;
    margin-bottom:8px;
}

.member-card p{
    margin:6px 0;
    color:#555;
}
.profile-section{
    padding:60px 20px;
    display:flex;
    justify-content:center;
    background:#f5f5f5;
}

.profile-card{
    width:380px;
    background:#fff;
    border-radius:15px;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.profile-card img{
    width:170px;
    height:170px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #2e7d32;
    margin-bottom:20px;
}

.profile-card h2{
    color:#2e7d32;
    margin-bottom:15px;
}

.profile-card p{
    margin:10px 0;
    font-size:16px;
}

.profile-card .btn{
    display:inline-block;
    margin-top:20px;
}
.gallery-section{
    padding:60px 20px;
    text-align:center;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

.gallery-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.gallery-card:hover{
    transform:translateY(-8px);
}

.gallery-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.gallery-card h3{
    margin:15px 0 5px;
}

.gallery-card p{
    margin-bottom:15px;
    color:#666;
}
.activities-section{
    padding:60px 20px;
    text-align:center;
}

.activities-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:30px;
}

.activity-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.activity-card:hover{
    transform:translateY(-8px);
}

.activity-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.activity-card h3{
    margin:15px;
    color:#2e7d32;
}

.activity-card p{
    padding:0 15px 20px;
}
.notice-section{
    padding:60px 20px;
}

.notice-section h2{
    text-align:center;
    margin-bottom:30px;
    color:#2e7d32;
}

.notice-container{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.notice-card{
    background:#fff;
    border-left:6px solid #2e7d32;
    border-radius:10px;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.notice-card h3{
    color:#2e7d32;
    margin-bottom:10px;
}

.notice-card p{
    margin:8px 0;
}

.notice-card .btn{
    display:inline-block;
    margin-top:15px;
}
/* ==========================
   Contact Page
========================== */

.contact-section{
    padding:60px 20px;
}

.contact-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    align-items:flex-start;
}

.contact-info,
.contact-form{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.contact-info h2,
.contact-form h2{
    color:#2e7d32;
    margin-bottom:20px;
}

.contact-info p{
    margin:15px 0;
    font-size:16px;
    line-height:1.6;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
    outline:none;
}

.contact-form textarea{
    resize:vertical;
    min-height:120px;
}

.contact-form button{
    width:100%;
    padding:12px;
    border:none;
    background:#2e7d32;
    color:#fff;
    font-size:16px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#1b5e20;
}

.map{
    margin-top:40px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.map iframe{
    width:100%;
    height:400px;
    border:0;
}

.social-links{
    margin-top:20px;
}

.social-links a{
    display:inline-block;
    margin:5px;
    padding:10px 15px;
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
}

.social-links a:hover{
    background:#1b5e20;
}
/* ===========================
   Register Page
=========================== */

.register-section{
    padding:60px 20px;
    background:#f8f9fa;
}

.container{
    max-width:1000px;
    margin:auto;
}

.register-title{
    text-align:center;
    margin-bottom:35px;
}

.register-title h2{
    color:#2e7d32;
    font-size:32px;
    margin-bottom:10px;
}

.register-title p{
    color:#666;
}

.register-form{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    flex:1;
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-weight:600;
    margin-bottom:8px;
    color:#333;
}

.form-group input,
.form-group select,
.form-group textarea{
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#2e7d32;
    box-shadow:0 0 5px rgba(46,125,50,.3);
}

.form-group textarea{
    min-height:120px;
    resize:vertical;
}

.register-form .btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:8px;
    background:#2e7d32;
    color:#fff;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

.register-form .btn:hover{
    background:#1b5e20;
}

@media(max-width:768px){

.form-row{
    flex-direction:column;
}

.register-form{
    padding:20px;
}

.register-title h2{
    font-size:26px;
}

}
/* File Upload */
.form-group input[type="file"]{
    padding:10px;
    background:#f5f5f5;
    border:2px dashed #2e7d32;
    border-radius:8px;
    cursor:pointer;
}

.form-group input[type="file"]:hover{
    background:#eef8ef;
}

/* Checkbox */
.form-group input[type="checkbox"]{
    width:auto;
    margin-right:10px;
    cursor:pointer;
}

.form-group label{
    line-height:1.6;
}

/* Submit Button */
.btn{
    display:inline-block;
    width:100%;
    padding:14px;
    background:#2e7d32;
    color:#fff;
    font-size:17px;
    font-weight:600;
    border:none;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#1b5e20;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

/* Mobile Responsive */
@media (max-width:768px){

    .register-section{
        padding:40px 15px;
    }

    .register-form{
        padding:20px;
    }

    .form-row{
        flex-direction:column;
        gap:15px;
    }

    .register-title h2{
        font-size:24px;
    }

    .btn{
        font-size:16px;
    }

}
.admin-container{
    width:95%;
    margin:30px auto;
}

.dashboard-cards{
    display:flex;
    gap:20px;
    margin:20px 0;
}

.card{
    background:#0d6efd;
    color:#fff;
    padding:20px;
    border-radius:10px;
    width:220px;
    text-align:center;
}

.search-box{
    margin:20px 0;
}

.search-box input{
    width:300px;
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
}

.admin-table{
    width:100%;
    border-collapse:collapse;
}

.admin-table th,
.admin-table td{
    border:1px solid #ddd;
    padding:10px;
    text-align:center;
}

.admin-table th{
    background:#0d6efd;
    color:#fff;
}

.action-btn{
    background:green;
    color:white;
    border:none;
    padding:6px 12px;
    border-radius:5px;
    cursor:pointer;
}
/* ===========================
   MEMBER PROFILE
=========================== */

.profile-section{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px 20px;
    background:#f5f7fa;
}

.profile-card{
    width:100%;
    max-width:700px;
    background:#fff;
    border-radius:15px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    text-align:center;
}

.profile-card img{
    width:170px;
    height:170px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #0d6efd;
    margin-bottom:20px;
}

.profile-card h2{
    font-size:30px;
    margin-bottom:15px;
    color:#222;
}

.profile-card hr{
    margin:20px 0;
}

.profile-card p{
    text-align:left;
    font-size:18px;
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.profile-card strong{
    color:#0d6efd;
    display:inline-block;
    width:170px;
}

.profile-card .btn{
    display:inline-block;
    margin-top:25px;
    padding:12px 30px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.profile-card .btn:hover{
    background:#084dbd;
}

/* Dark Mode */

body.dark-mode .profile-section{
    background:#111827;
}

body.dark-mode .profile-card{
    background:#1f2937;
    color:#fff;
}

body.dark-mode .profile-card h2{
    color:#fff;
}

body.dark-mode .profile-card p{
    border-bottom:1px solid #374151;
}

body.dark-mode .profile-card strong{
    color:#4dabff;
}

/* Mobile */

@media(max-width:768px){

.profile-card{
    padding:20px;
}

.profile-card img{
    width:130px;
    height:130px;
}

.profile-card h2{
    font-size:24px;
}

.profile-card p{
    font-size:16px;
}

.profile-card strong{
    width:120px;
}

}
.btn-id {
    display: inline-block;
    margin-top: 8px;
    margin-left: 8px;
    padding: 10px 18px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-id:hover {
    background: #084298;
}
/* Professional Admin Button */

.admin-login-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    background:#dc3545;
    color:#fff !important;

    padding:7px 14px;
    border-radius:20px;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    border:2px solid transparent;

    transition:.3s ease;
}

.admin-login-btn:hover{

    background:#bb2d3b;

    border-color:#fff;

    transform:translateY(-2px);

    box-shadow:0 4px 10px rgba(220,53,69,.4);

}
/* ===========================
Latest Notices
=========================== */

.latest-notices{
    width:90%;
    margin:40px auto;
}

.latest-notices h2{
    text-align:center;
    margin-bottom:20px;
    color:#0b5ed7;
}

.notice-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.notice-card{
    background:#fff;
    border-radius:12px;
    padding:18px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.notice-card:hover{
    transform:translateY(-5px);
}

.notice-card h3{
    margin-bottom:10px;
    color:#0b5ed7;
}

.notice-card p{
    color:#444;
    line-height:1.6;
}

.notice-date{
    margin-top:15px;
    color:#777;
    font-size:14px;
}
/* ===== Leadership Cards ===== */

.leader-card{
    border:2px solid #e6e6e6;
    border-radius:18px;
    padding:25px 20px;
    background:#fff;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.leader-card:hover{
    transform:translateY(-8px);
    border-color:#0d6efd;
    box-shadow:0 12px 28px rgba(0,0,0,.15);
}

/* Profile Photo */

.leader-card img{
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit:cover;
    object-position:center top;
    border:none;
    padding:0;
    box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.leader-card h3{
    color:#0d6efd;
    font-size:30px;
    margin-top:18px;
    font-weight:700;
}

.leader-card p{
    display:block;
    margin-top:10px;
    padding:0;
    border:none;
    background:none;
    color:#222;
    font-size:20px;
    font-weight:600;
}
/* ===========================================
   PHASE 1 - MOBILE NAVBAR RESPONSIVE
=========================================== */

@media screen and (max-width: 768px) {

.header{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:15px;
    gap:15px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    background:#fff;
    box-shadow:0 4px 15px rgba(0,0,0,.2);
}

.club-name h1{
    font-size:28px;
    margin:0;
    color:#fff;
    font-weight:700;
}

.club-name p{
    margin:4px 0 0;
    font-size:14px;
    color:#e8f5e9;
}
.navbar{
    width:100%;
}

.navbar ul{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    list-style:none;
    padding:0;
    margin:0;
}

.navbar ul li{
    margin:0;
}

.navbar ul li a{
    display:block;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
}

.header > div:last-child{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:10px;
}

#darkModeBtn{
    width:45px;
    height:45px;
}

#logoutBtn{
    width:auto;
    padding:10px 18px;
}

}
/* =========================
   Mobile Responsive - Phase 2
========================= */

@media (max-width:768px){

.hero{
    flex-direction:column;
    text-align:center;
    padding:40px 20px;
    gap:30px;
}

.hero-content{
    width:100%;
}

.hero-content h1{
    font-size:72px;
    font-weight:900;
    line-height:1.1;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:2px;
    text-shadow:
        0 4px 10px rgba(0,0,0,.6),
        0 0 20px rgba(0,0,0,.4);
    margin-bottom:20px;
}

.hero-content p{
    font-size:24px;
    color:#fff;
    font-weight:500;
    text-shadow:0 2px 8px rgba(0,0,0,.6);
    margin-bottom:30px;
}
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
    align-items:center;
}

.hero-buttons .btn{
    width:220px;
}

.hero-image{
    width:100%;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:320px;
    height:auto;
}
/* Mobile Menu */

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}
@media(max-width:992px){

.menu-toggle{
    display:block;
}

.navbar{
position:fixed;
top:0;
right:-320px;
left:auto;
width:300px;
height:100vh;
background:#fff;
transition:.35s;
z-index:9999;
box-shadow:-5px 0 20px rgba(0,0,0,.2);
overflow-y:auto;
}

.navbar.active{
right:0;
left:auto;
}

.navbar ul{
display:flex;
flex-direction:column;
align-items:flex-start;
padding:20px 35px;
gap:22px;
}

.navbar ul a{
color:#222;
font-size:18px;
font-weight:600;
}

}
.hero{
position:relative;
height:90vh;
overflow:hidden;
margin-top: 0 px;

}

.hero-slider{
position:relative;
width:100%;
height:100%;
}

.hero-slider img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:1s;
}

.hero-slider img.active{
opacity:1;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.45);
z-index:2;
}

.hero-content{
position:absolute;
top:50%;
left:8%;
transform:translateY(-50%);
z-index:3;
color:#fff;
max-width:600px;
}

.hero-content h1{
font-size:40px;
font-weight:800;
margin-bottom:20px;
}

.hero-content p{
font-size:22px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.btn-primary{
background:#ffd700;
color:#000;
padding:15px 30px;
border-radius:8px;
font-weight:bold;
text-decoration:none;
}

.btn-secondary{
border:2px solid #fff;
color:#fff;
padding:15px 30px;
border-radius:8px;
text-decoration:none;
}

.btn-secondary:hover{
background:#fff;
color:#000;
}


/* ===============================
   HERO SLIDER FIX
================================ */

.hero-slider{
    position:relative;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity .8s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:1;
}
.menu-toggle{
display:block;
font-size:30px;
cursor:pointer;
color:#fff;
}

.close-menu{
position:absolute;
top:15px;
right:20px;
left:auto;
font-size:35px;
cursor:pointer;
color:#444;
}

@media(min-width:992px){

.navbar{
    position:fixed;
    top:0;
    right:-320px;
    left:auto;
    width:300px;
    height:100vh;
    background:#fff;
    transition:.35s;
    z-index:9999;
    box-shadow:-5px 0 20px rgba(0,0,0,.2);
    overflow-y:auto;
}

.navbar.active{
    right:0;
    left:auto;
}

.navbar ul{
display:flex;
flex-direction:column;
align-items:flex-start;
padding:20px 35px;
gap:22px;
}

.navbar ul a{
color:#222;
font-size:18px;
font-weight:600;
}

}
/* ==========================
   PROFESSIONAL RIGHT MENU
========================== */

.menu-header{
    height:70px;
    background:#222;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    padding:0 20px;
}


.has-submenu{
    width:100%;
}

.has-submenu>a{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.submenu{
    display:none;
    width:100%;
    margin:0;
    padding:0;
    background:#0b4fa3;
}

.has-submenu.open .submenu{
    display:block;
}

.submenu li{
    list-style:none;
}

.submenu li a{
    display:block;
    width:100%;
    padding:16px 45px;
    background:#0b4fa3;
    color:#fff !important;
    text-decoration:none;
    font-size:16px;
}

.submenu li a:hover{
    background:#1565c0;
}
/* ===== Mobile Header Fix ===== */

@media (max-width:768px){

.header{
    display: flex;
    width: 100%;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:12px 15px;
}

.logo{
    gap:10px;
    align-items: center;
    flex: 1;
}

.logo img{
    width:50px;
    height:50px;
}

.club-name h1{
    font-size:22px;
}

.club-name p{
    font-size:12px;
}

.menu-toggle{
    font-size:32px;
    display:block;
}

}
.notice-bar{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#ffffff;
    padding:14px 15px;
    min-height:60px;
    border-top:2px solid #ff0000;
    border-bottom:2px solid #ff0000;
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
}

.notice-bar a{
    display:flex;
    align-items:center;
    gap:8px;
    color:#ff0000;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    line-height:1.5;
    text-align:center;
}

#noticeTitle{
    color:#d60000;
    font-weight:600;
}

.blink{
    color:#ff0000;
    animation:blink 1s infinite;
}

@keyframes blink{
    0%,100%{
        opacity:1;
    }
    50%{
        opacity:.2;
    }
}

@media(max-width:768px){

.notice-bar{
    padding:12px 10px;
    min-height:50px;
}

.notice-bar a{
    font-size:16px;
    gap:5px;
    flex-wrap:wrap;
}

}
.latest-notice{
    width:95%;
    margin:20px auto;
    background:#fff;
    border-left:6px solid #ff3b30;
    border-radius:12px;
    display:flex;
    align-items:center;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
}

.notice-label{
    background:#ff3b30;
    color:#fff;
    padding:15px 20px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
}

.notice-marquee{
    flex:1;
    padding:0 15px;
    color:#222;
    font-size:16px;
    font-weight:600;
}

.notice-marquee marquee{
    padding:15px 0;
}

.notice-btn{
    background:#0b7a35;
    color:#fff;
    text-decoration:none;
    padding:15px 22px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.notice-btn:hover{
    background:#095d28;
}

@media(max-width:768px){

.latest-notice{
    flex-direction:column;
}

.notice-label,
.notice-btn{
    width:100%;
    justify-content:center;
}

.notice-marquee{
    width:100%;
}

}
.notice-bar{
    background:#fff;
    height:52px;
    display:flex;
    align-items:center;
    overflow:hidden;
    border-top:2px solid #e53935;
    border-bottom:2px solid #e53935;
}

.notice-label{
    background:linear-gradient(135deg,#ff3b30,#c62828);
    color:#fff;
    font-weight:700;
    font-size:16px;
    padding:15px 22px;
    text-transform:uppercase;
    letter-spacing:.5px;
    white-space:nowrap;
}

.notice-content{
    flex:1;
    overflow:hidden;
    white-space:nowrap;
    padding:0 20px;
    font-size:17px;
    font-weight:600;
    color:#222;
}

.notice-content marquee{
    color:#222;
}

.notice-content b{
    color:#d50000;
}

.notice-date{
    color:#1976d2;
    font-weight:700;
}

@media(max-width:768px){
    .notice-label{
        font-size:13px;
        padding:15px;
    }

    .notice-content{
        font-size:14px;
    }
}
.back-home{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#0b7a2a;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
    margin:20px;
    transition:.3s;
}

.back-home:hover{
    background:#075d20;
    transform:translateY(-2px);
}