body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f4f8; /* Fresh light blue background */
    color: #333;
}

header {
    background: #003366;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

nav {
    background: #002244;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #f39c12; /* warm orange hover */
}

section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Members grid */
.members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    background-color: rgb(250, 247, 247);
}

.member-card {
    background: #f4f2f2;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-card img {
    width: 120px;
    height: 145px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #054b90;
    margin-bottom: 15px;
}

.member-card h3 {
    margin-bottom: 8px;
    font-size: 1.2em;
    color: #003366;
}

/* Email text fixed size and no wrap */
.member-card p {
    font-size: 0.95em;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin: 0 auto;
}

/* Footer styling */
footer {
    background: #003366;
    color: white;
    padding: 15px;
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
}

/* Form styling */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 1em;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #f39c12; /* warm orange */
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Button styling */
button {
    background: #003366;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #f39c12;
}

/* Responsive tweaks */
@media(max-width: 600px) {
    .members {
        grid-template-columns: 1fr;
    }
}

.logo{
    border-radius: 60px;
}

.mata{
    background-color: gray;
}

/*http://localhost:8080/group4_site/*/
