/* styles.css */
body {
    font-family: Helvetica, Arial, sans-serif; 
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #f4f1ec;
}

header {
    background-color: #8b4513;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 20px 0;
}

h1, h2, h3 {
    color: #4a2800;
}

a {
    color: #8b4513;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #4a2800;
    color: #fff;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.gallery img {
    width: 30%;
    margin-bottom: 20px;
    border: 2px solid #4a2800;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery img {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .gallery img {
        width: 100%;
    }
}

/* Add these to your existing styles.css */
.person {
    margin-bottom: 30px;
    overflow: hidden;
}

.person-photo {
    float: left;
    width: 150px;
    margin: 0 20px 10px 0;
    border: 2px solid #4a2800;
    border-radius: 5px;
}

.person h4 {
    margin-top: 0;
}

#family-stories article {
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.contact-image {
    width: 150px;
    margin-right: 30px;
}

.contact-details {
    flex: 1;
}

.contact-details ul {
    list-style-type: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 10px;
}

.contact-details a {
    color: #8b4513;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}



