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

body {
    font-family: "Open Sans", sans-serif;
}

/* HEADER */

.header {
    width: 100%;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 20;
    color: #fff;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    transition: 0.2s;
}

.nav a:hover {
    opacity: 0.7;
}

.donate-btn {
    background-color: #800020;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}


/* HERO SECTION */

.hero {
    position: relative;
    background-image: url("background.jpeg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    padding: 20px;
    color: white;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn {
    padding: 12px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.btn.about {
    background: #222;
    color: #fff;
}

.btn.donate {
    background: #800020;
    color: #fff;
    width: 40%;
}

