@media (max-width: 768px) {
    /* CSS styles for screens with a maximum width of 768px (typical for tablets) */
}
@media (max-width: 480px) {
    /* CSS styles for screens with a maximum width of 480px (typical for mobile phones) */
}


/* Reset some default styles */
body {
    background-color: #edebeb; /* webpage backgorund color */
}

body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: "Times New Roman", Times, serif;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #edebeb;
}

body {
    margin: 0; 
    font-family: Arial, sans-serif;
    background-color: #edebeb;
}

header {
    background-color: #3A3A3E;
    color: #edebeb;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .logo {
   /* display: flex;
    justify-content: center;
    align-items: center; */
    flex: 1;
    text-align: center; 
    padding-left: 100px;
}

.phone {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-right: 15px;
    padding-bottom: 5px;
    font-size: larger;
    font-family: "Times New Roman", Times, serif;
}

.logo {
    margin-bottom: 10px; /* Add spacing between the logo and the menu */
}

.logo img {
    max-width: 100%;
}

.bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px; /* Adjust the spacing from the left */
}

.social-icons {
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-bottom: 5px;
}

.social-icons a {
    margin-right: 10px; /* Adjust the spacing between the icons */
    text-decoration: none;
}

.social-icons img {
    width: 30px; /* Adjust the icon size as needed */
    height: 30px;
    filter: grayscale(100%) brightness(0) invert(100%) sepia(100%);
}

/* CSS for the About Us section */
.about-us {
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-left: 0px;
    padding-bottom: 40px;
    background-color: #edebeb;
    flex-direction: column; 
}

.about-us-image img {
    padding-top: 60px;
    max-width: 100%;
    height: auto;
    background-color: #edebeb;
    padding-bottom: 50px;
    
}

.about-us-content {
   background-color: #edebeb;
    margin-right: 0px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.about-us-content h2 {
    font-family: "Times New Roman", Times, serif;
    font-size: 45px;
    color: #3A3A3E;
}

.about-us-content p {
    font-size: 18px;
    color: #3A3A3E;
}

.photos-slider {
    overflow: hidden;
    width: 100%; /* Adjust the width as needed */
    max-width: 100%;
    position: relative;
}

.slider-container {
    display: flex;
    height: 625px; /* Set the desired height for the slider container */
    transition: transform 0.5s ease; /* Adjust the transition duration for the sweep effect */
}

.slider-container img {
    max-width: 100%;
    height: auto;
    flex: 0 0 100%; /* Make sure all images are the same width */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Center the list horizontally */
    background-color: #c9c9c9;
}

nav ul li {
    margin-right: 20px;
    background-color: #c9c9c9;
}

nav ul li a {
    text-decoration: none;
    color: #c9c9c9;
}

section.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
}

section.photos .photo {
    margin: 10px;
}

section.photos .photo img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section.contact-form {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section.contact-form h2 {
    padding-top: 20px;
    font-size: 45px;
    margin-bottom: 20px;
    color: #3A3A3E;
}

section.contact-form h3, h2 {
    color: #3A3A3E;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

section.contact-form label {
    display: block;
    margin-top: 10px;
    color: #3A3A3E;
}

section.contact-form input[type="text"],
section.contact-form input[type="email"],
section.contact-form textarea {
    width: 40%;
    padding: 10px;
    margin-top: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #3A3A3E;
}

section.contact-form input[type="sendEmail"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    padding-bottom: 15px;
}

section.contact-form button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 15px;
}



footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
