/* styles.css */

@font-face {
    font-family: 'Poppins-Bold';
    src: url('Poppins-Bold.ttf') format('truetype');
    /* Add other font formats if needed (e.g., woff, woff2) */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins-Bold", sans-serif; /* Use local Poppins-Bold font */
}

body {
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text color */
}

header {
    background-color: #ff0000; /* Red background for header */
    color: #ffffff; /* White text color */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    max-width: 100px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff; /* Black color on hover */
}

main {
    padding-top: 80px; /* Adjust padding to accommodate fixed header */
}

.hero {
    background-color: #ff0000; /* Red background for hero section */
    color: #ffffff; /* White text color */
    padding: 20px 20px;
    text-align: center;
}

.contact-info,
.contact-form {
    background-color: #000000; /* Black background for sections */
    color: #ffffff; /* White text color */
    padding: 50px 20px;
}

.section-content {
    max-width: 600px; /* Limit content width */
    margin: 0 auto; /* Center content */
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form form label,
.contact-form form input,
.contact-form form textarea {
    font-family: 'Poppins-Bold', sans-serif; /* Use local Poppins-Bold font */
}

.contact-form form input[type="submit"] {
    width: auto; /* Remove fixed width */
    border-radius: 10px; /* Less rounded corners */
    padding: 10px 20px; /* Smaller padding for smaller button */
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    padding: 8px; /* Smaller padding for input fields */
}

.contact-form form input[type="submit"]:hover {
    background-color: #990000; /* Darker red color on hover */
}

.footer {
    background-color: #ff0000; /* Red background for footer */
    color: #ffffff; /* White text color */
    padding: 20px;
    text-align: center;
}

.about,
.staff {
    background-color: #000000; /* Black background for sections */
    color: #ffffff; /* White text color */
    padding: 100px 20px;
}

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-content img {
    max-width: 300px; /* Adjust image size */
    margin-bottom: 30px;
}

.section-content .text {
    text-align: center;
}

.staff-member {
    margin-bottom: 50px;
}

.staff-member img {
    max-width: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.staff-member .text {
    text-align: center;
}

.contact {
    color: #ffffff; /* White text color */
}
