:root {
    --accent-blue-color: #007bff;
    --accent-red-color: #d91616;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f5f7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding: 40px 80px;
}

/* Management Section */
.management-section {
    max-width: 900px;
    margin: 80px auto 40px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.management-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.management-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-red-color);
}

.management-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: -10px;
    margin-bottom: 40px;
}

.leader-card {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.leader-card:hover {
    background-color: #f9f9f9;
    transform: translateY(-5px);
}

.leader-card.reverse {
    flex-direction: row-reverse;
}

.leader-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.leader-card.reverse .leader-photo {
    margin-right: 0;
    margin-left: 20px;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    text-align: left;
}

.leader-card.reverse .leader-info {
    text-align: right;
}

.leader-info h3 {
    margin: 0 0 5px;
    font-size: 24px;
    color: #333;
}

.leader-info p {
    margin: 0;
    font-size: 18px;
    color: #777;
}

.employment-note {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: #555;
}

.employment-note a {
    color: var(--accent-blue-color);
    text-decoration: none;
    font-weight: 500;
}

.employment-note a:hover {
    text-decoration: underline;
}


/* Hero Container */
.hero-container {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Navigation Bar Styles */
nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 80px;
    height: 60px;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #333;
}

nav .nav-right a {
    color: var(--accent-blue-color);
}

nav:hover .nav-right a:hover {
    color: #ffffff;
}



/* Left Section: Logo and Location */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navlogo img {
    height: 70px; /* Adjust height as needed */
    display: block;
}

.nav-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
}
nav:hover .nav-location {
    color: #333;
}

.nav-location i {
    color: var(--accent-red-color);
    font-size: 18px;
}

/* Center Section: Navigation Links */
.nav-center ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-center a {
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-center a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-red-color);
    transition: width 0.3s ease;
}

.nav-center a:hover::after {
    width: 100%;
}

/* Right Section: User Account */
.nav-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 15px;
    border: 1px solid #007bff;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-right a:hover {
    background-color: #007bff;
    color: #ffffff;
    border-color: #007bff;
}

footer {
    background-color: #f8f9fa;
    padding: 20px 80px;
    border-top: 1px solid #e7e7e7;
    flex-shrink: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p,
.footer-right p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.footer-left p:first-child {
    font-weight: 700;
}

.footer-right {
    text-align: right;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1024px) {
    nav {
        padding: 10px 30px;
    }
    main {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 10px 20px;
    }
    .nav-center, .nav-location {
        display: none;
    }
    main {
        padding: 20px;
    }
    .management-section {
        margin-top: 40px;
        padding: 30px;
    }
    .leader-card {
        flex-direction: column;
        text-align: center;
    }
    .leader-card.reverse {
        flex-direction: column;
    }
    .leader-photo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .leader-card.reverse .leader-photo {
        margin-left: 0;
    }
    .leader-info, .leader-card.reverse .leader-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .management-section {
        padding: 20px;
    }
    .management-section h2 {
        font-size: 28px;
    }
    .leader-info h3 {
        font-size: 22px;
    }
    .leader-info p {
        font-size: 16px;
    }
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}
