/* MAEP Website Custom Styles */

/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #50545C;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    color: #1e73be;
    transition: all 0.3s ease;
}

a:hover {
    color: #135999;
    text-decoration: none;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #1e73be;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #1e73be;
}

.social-icons a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    color: #1e73be;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1e73be;
}

/* Division Sections */
.division-title {
    color: #1e73be;
    font-weight: 700;
    position: relative;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.division-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #1e73be;
}

.division-section {
    padding: 2rem 0;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
}

.division-section:nth-of-type(odd) {
    background-color: #f8f9fa;
}

/* Team Section */
.team-member {
    transition: transform 0.3s ease;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
    border: 5px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Blockquote */
blockquote {
    border-left: 4px solid #1e73be;
    padding-left: 1.5rem;
}

/* Footer */
footer {
    border-top: 5px solid #1e73be;
}

footer a:hover {
    color: #1e73be !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .team-member {
        margin-bottom: 2rem;
    }
}