/* General Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: #6e2c3a;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    text-align: center;
    margin-bottom: 10px;
}

header .logo img {
    width: 180px;
}

nav {
    background-color: #5a2431;
    padding: 10px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #4a1d29;
    border-radius: 4px;
}

/* Main Content Styles */
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

section {
    margin-bottom: 60px;
}

section h1 {
    color: #6e2c3a;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

section h1::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #6e2c3a;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

section p, section ul {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

section ul {
    list-style: disc inside;
    margin-left: 20px;
}

/* Faculty Profiles Styles */
.faculty-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.faculty-member {
    background-color: #f9f9f9;
    width: calc(33.333% - 20px);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.faculty-member:hover {
    transform: translateY(-5px);
}

.faculty-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #6e2c3a;
}

.faculty-member h2 {
    font-size: 1.5rem;
    color: #6e2c3a;
    margin-bottom: 10px;
}

.faculty-member p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

.faculty-member ul {
    list-style: disc inside;
    text-align: left;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .faculty-member {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .faculty-member {
        width: 100%;
    }

    nav ul li {
        margin: 10px 5px;
    }
}

/* Footer Styles */
footer {
    background-color: #6e2c3a;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
    position: relative;
    bottom: 0;
    width: 100%;
}
