/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #333;
    color: #fff;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

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

nav ul li {
    margin: 0 10px;
}

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

.search-bar input {
    padding: 5px;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3em;
}

.hero-text p {
    font-size: 1.2em;
    margin: 20px 0;
}

.hero-text .btn {
    background: #ff4b2b;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

/* About Us */
.about-us {
    padding: 40px;
    background: #fff;
    text-align: center;
}

.about-us img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

/* Gallery */
.gallery {
    padding: 40px;
    background: #f4f4f4;
}

.gallery .image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Activities */
.activities {
    padding: 40px;
    background: #fff;
    text-align: center;
}

.activities .blog-excerpts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activities .btn {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

/* Family Tree */
.family-tree {
    padding: 40px;
    background: #f4f4f4;
    text-align: center;
}

/* Contact Us */
.contact-us {
    padding: 40px;
    background: #fff;
    text-align: center;
}

.contact-us form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-us form input,
.contact-us form textarea {
    padding: 10px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contact-us .btn {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer .quick-links,
footer .social-media {
    margin-bottom: 10px;
}

footer .social-media {
    display: flex;
    justify-content: center;
    gap: 10px;
}

