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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    font-weight: 600;
    color: #fff;
}

p {
    color: #fff;
}

a {
    text-decoration: none;
}

button {
    border: none;
    padding: 15px 30px;
    background-color: #1e8bc3;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #155a7a;
}

/* Landing Page */
#landing {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/Images/IMG_4861.JPG');
    background-size: cover;  /* Ensures the image covers the entire container */
    background-position: center;  /* Keeps the image centered */
    background-repeat: no-repeat;  /* Prevents the image from repeating */
    
}



.overlay-text {
    text-align: center;
    color: rgb(255, 255, 255);
    max-width: 80%;
}

.overlay-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

.overlay-text p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.overlay-text .btn {
    font-size: 1.2rem;
    padding: 12px 25px;
    background-color: #1e8bc3;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.overlay-text .btn:hover {
    background-color: #155a7a;
}

/* About Us */
#about-us {
    padding: 80px 20px;
    background-color: #333;
    text-align: center;
}

#about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.about-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.about-item {
    background-color: #444;
    padding: 30px;
    border-radius: 10px;
    width: 30%;
    margin: 10px;
    color: white;
}

.about-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-item ul {
    list-style-type: none;
}

.about-item ul li {
    font-size: 1.1rem;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }
    
    .about-item {
        width: 80%;
        margin-bottom: 30px;
    }
}

/* Quote Form */
#quote {
    background-color: #d4d4d4;
    color: rgb(0, 0, 0);
    padding: 50px 20px;
    font-weight: bold;
    text-align: center;
}

#quote h2 {
    background-color: #d4d4d4;
    color: rgb(0, 0, 0);
    padding: 50px 20px;
    text-align: center;
    font-size: 2.5rem;
}

#quote form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

#quote input, #quote textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background-color: #9e9e9e;
    color: rgb(21, 21, 21);
    border: 1px solid #ccc;
    border-radius: 5px;
}

#quote button {
    background-color: #1e8bc3;
    padding: 15px 25px;
    font-size: 1.2rem;
    border-radius: 5px;
}

#quote button:hover {
    background-color: #155a7a;
}

/* Contact Page */
#contact {
    background-color: #333;
    color: rgb(255, 255, 255);
    padding: 50px 20px;
    text-align: center;
}

#contact a {
    color: #1e8bc3;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Add Google Font (similar to Impact) */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* Style for the company name (logo) */
.logo {
    position: fixed; /* Fixed positioning so it stays in place as you scroll */
    top: 8px; /* Distance from the top */
    left: 8px; /* Distance from the left */
    font-family: 'Anton', sans-serif; /* Use Google Font similar to Impact */
    font-size: 1.7rem;  /* Adjust font size */
    color: white;  /* Default color (if needed) */
    text-transform: uppercase;  /* Uppercase letters for boldness */
    font-weight: bold;  /* Bold text */
    letter-spacing: -1px;  /* Negative value to bring letters closer together */
    z-index: 1001; /* Ensure it sits above other content */
}

/* Blue color for "Book Brothers" */
.blue {
    color: rgb(255, 255, 255); /* Change this to any shade of blue you prefer */
}

/* Green color for "Maintenance" */
.green {
    color: rgb(255, 255, 255); /* Change this to any shade of green you prefer */
}
/* Hide logo when scrolling */
.logo.hidden {
    opacity: 0; /* Makes the logo transparent */
    transition: opacity 0.3s ease; /* Smooth transition effect */
}
