/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    background-image: url('images/background.jpg'); /* Ensure you have this background image */
    background-size: cover;
    background-position: center;
    line-height: 1.6;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(242, 246, 250, 0.8); /* Blue with transparency */
    color: white;
}

.main-header .logo {
    height: 40px;
}

nav a {
    color: rgb(22, 21, 21);
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover {
    opacity: 0.7;
}

/* Divider */
.divider {
    height: 2px;
    background-color: #ccc;
    margin: 20px 0;
}

/* Banner */
.banner {
    text-align: center;
    background-color: rgba(5, 5, 5, 0.8);
    color: white;
    padding: 50px 20px;
}

.banner h1 {
    font-size: 2.5rem;
}

.banner p {
    font-size: 1.2rem;
}

/* Team Gallery */
.team-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Create a 2x2 grid */
    gap: 20px;
    padding: 40px 20px;
    text-align: center;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.team-member img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
}

.team-member p {
    font-size: 1rem;
    color: #555;
}

/* Contact Form */
.contact-form {
    display: flex;
    justify-content: center; /* Centering horizontally */
    align-items: center; /* Centering vertically */
    padding: 40px 20px;
    text-align: center;
    min-height: 400px; /* Ensure form stays vertically centered */
}

.contact-form form {
    width: 100%;
    max-width: 600px; /* Max width for the form */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    padding: 12px;
    margin: 10px 0;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form button {
    background-color: #050f1a;
    color: white;
    cursor: pointer;
    border: none;
}

.contact-form button:hover {
    background-color: #e90808;
}

/* Footer */
.main-footer {
    background-color: rgba(5, 5, 5, 0.8); /* Same semi-transparent blue */
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.main-footer .footer-logo {
    height: 400px;
}

/* Styling the location buttons */
.location-buttons {
    text-align: center;
    margin-top: 20px;
}

.location-button-container button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0d0d0e;
    color: white;
    border: none;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
}

.location-button-container button:hover {
    background-color: #121213;
}
