 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f5f5f5;
    color: #333;
}

.main-header {
    background: url('PAGE/village.jpeg') center center/cover no-repeat;
    height: 300px;
    position: relative;
}

.header-overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 3px solid white;
}

.header-text h1 {
    margin: 0;
    font-size: 32px;
}

.header-text p {
    margin-top: 10px;
    font-size: 18px;
    color: #f1f1f1;
}

nav {
    background: #34495e;
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    margin: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

nav a:hover {
    color: #f1c40f;
}

section {
    padding: 30px 20px;
}

img {
    margin: 10px;
    border-radius: 10px;
}

.home-buttons {
    margin-top: 20px;
}

.home-btn,
.copy-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
}

.home-btn:hover,
.copy-btn:hover {
    background-color: #2980b9;
    transition: 0.3s;
}

.gallery,
.volunteer-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-behavior: smooth;
}

.card,
.volunteer-card {
    min-width: 250px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.card img,
.volunteer-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.call-btn,
.whatsapp-btn,
.facebook-btn,
.map-btn {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    width: 250px;
    font-weight: bold;
}

.call-btn {
    background-color: #3498db;
}

.whatsapp-btn {
    background-color: #25D366;
}

.facebook-btn {
    background-color: #1877F2;
}

.map-btn {
    background-color: #e67e22;
}

.call-btn:hover,
.whatsapp-btn:hover,
.facebook-btn:hover,
.map-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    transition: 0.3s;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    margin-top: 20px;
}