/* styles.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5dc; /* Light beige background */
    color: #3c3c3b; /* Dark gray text */
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header Styling */
header {
    background-color: #dcd2b2; /* Muted tan */
    color: #3c3c3b; /* Dark gray text */
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    text-align: center;
    margin: 0;
    font-family: 'Georgia', serif; /* A more traditional font for headings */
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #3c3c3b; /* Dark gray text for navigation */
    text-decoration: none;
}

nav ul li a:hover {
    color: #8c8b75; /* Hover effect with a muted brown */
}

/* About Section Styling */
section#about {
    background: #ebe6d1; /* Light beige for contrast */
    text-align: center;
    padding: 30px 0;
}

section#about h2 {
    font-family: 'Georgia', serif;
}

/* Services Section Styling */
section#services {
    background: #f5f5dc; /* Matching body background */
    padding: 30px 0;
}

.service-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    margin: 10px;
    background: #e0d9b5; /* Light sepia background */
    padding: 20px;
    border: 1px solid #dcd2b2; /* Tan border */
    border-radius: 5px;
    text-align: center;
}

.service-item h3 {
    font-family: 'Georgia', serif;
    color: #3c3c3b;
}

.service-item p {
    color: #4f4f4c; /* Softer gray for text */
}

/* Contact Section Styling */
#contact {
    background: #ebe6d1; /* Light beige */
    padding: 30px 0;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    margin: 10px 0 5px;
    font-family: 'Georgia', serif;
    color: #3c3c3b;
}

form input,
form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #dcd2b2; /* Tan border */
    border-radius: 5px;
    background-color: #f9f9e3; /* Very light beige for form inputs */
}

form button {
    padding: 10px;
    background-color: #3c3c3b; /* Dark gray button */
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Georgia', serif;
}

form button:hover {
    background-color: #8c8b75; /* Muted brown hover */
}

/* Footer Styling */
footer {
    background-color: #dcd2b2; /* Muted tan */
    color: #3c3c3b;
    text-align: center;
    padding: 10px 0;
    position: relative; /* Adjusted to ensure proper footer position */
    width: 100%;
}

/* Additional Styles for Text and Headings */
h2, h3 {
    color: #3c3c3b; /* Dark gray headings */
}

p {
    color: #4f4f4c; /* Softer gray text */
}
/* Profile Photo Styling - Round Shape */
.profile-photo {
    display: block;
    width: 200px;  /* Make sure width and height are the same */
    height: 200px; /* Make sure width and height are the same */
    border-radius: 50%; /* This makes the image round */
    margin: 20px auto; /* Centers the photo */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

/* Responsive Navigation Styles */
nav {
    position: relative;
}

.menu-toggle {
    display: none; /* Hidden by default, shown only on small screens */
    background-color: #3c3c3b;
    color: #fff;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    margin: 10px;
}

#nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
}

#nav-list.active {
    display: block;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show menu toggle on small screens */
    }
    #nav-list {
        display: none;
        flex-direction: column;
    }
    #nav-list.active {
        display: flex;
    }
    #nav-list li {
        margin: 10px 0;
    }
}

/* Form Message Styles */
#form-message {
    color: green;
    margin-top: 15px;
    display: none;
}

#form-message.hidden {
    display: none;
}

#form-message.visible {
    display: block;
}
