
body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */

.navbar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    display: block;
    height: 100px;
}

/* MENU */
.menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* NAV ITEMS */
.nav-item {
    position: relative;
}

/* ================= TOP LEVEL LINKS ================= */

.nav-item > a {
    text-decoration: none;
    background: #1a2a44;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    padding: 12px 16px;
    border-radius: 4px;
    display: block;
}

/* HOVER */
.nav-item > a:hover {
    background: #2b5c8a;
}

/* ================= DROPDOWN ================= */

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f0f0f0;
    border: 1px solid #ddd;
    min-width: 240px;
    z-index: 1000;
}

/* SHOW ON HOVER (desktop only) */
.nav-item:hover .dropdown {
    display: block;
}

/* PHP CONTROLLED */
.dropdown.show {
    display: block;
}

/* SUBMENU LINKS */
.dropdown a {
    display: block;
    padding: 10px;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

/* SUBMENU HOVER */
.dropdown a:hover {
    background: #e0e0e0;
    color: #000;
}

/* ================= CTA ================= */

.cta-button {
    background: #1a2a44;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.cta-button:hover {
    background: #2b5c8a;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .logo img {
        width: 100%;
        height: auto;
    }

    /* STACK MENU */
    .menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-item > a {
        width: 100%;
        text-align: center;
        font-size: 16px;
        border-radius: 0;
    }

    /* DROPDOWN MOBILE */
    .dropdown {
        position: static;
        width: 100%;
        display: none;
        border: none;
    }

    .dropdown.show {
        display: block;
    }

    .dropdown a {
        text-align: center;
        border-top: 1px solid #ddd;
    }

    .cta-button {
        width: 90%;
        margin: 10px auto;
        text-align: center;
    }
}

/* ================= TEAM GRID ================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
}

/* FIXED LINK BEHAVIOR */
.team-card {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    background: #ffffff;

    /* Mobile tap fix */
    -webkit-tap-highlight-color: transparent;
}

/* REMOVE ALL LINK STATES */
.team-card:link,
.team-card:visited,
.team-card:hover,
.team-card:active {
    text-decoration: none;
    color: inherit;
}

.team-card:hover {
    background: #f5f5f5;
}

.team-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border: none;
}

.team-name {
    margin-top: 10px;
    font-weight: bold;
}

.team-role {
    font-size: 0.9em;
}









/* ================= PROFILE PAGE ================= */

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    text-decoration: none;
    color: #1a2a44;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.profile-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 900px;
}

.profile-photo img {
    width: 250px;
    height: auto;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-role {
    font-weight: bold;
    margin-bottom: 15px;
}

.profile-bio {
    line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
   .profile-photo img {
        width: 100%;
        max-width: 300px;
    }
}












.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Link styling */
.hero-link {
    color: #1a2a44;
    text-decoration: none;
    font-weight: bold;
}

.hero-link:hover {
    text-decoration: underline;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        width: 100%;
    }
}


/* ================= ABOUT ================= */

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        width: 100%;
    }
}
