/* General Styles */
body {
    font-family: 'Lora', serif;
    background-color: #F5F1EB;
    color: #5C4326;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    background-color: #8C6338;
    color: white;
}

header img {
    width: 200px;
    margin-bottom: 10px;
}

nav {
    display: flex;
    gap: 20px;
}

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

nav a:hover {
    color: #F5F1EB;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;  /* Full viewport height */
    padding: 0;

    background: url('/images/hero-background.jpg') center/cover no-repeat;
    background-position: center;
    background-size: cover; /* Ensures full coverage */
    background-repeat: no-repeat;
}


.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Inner Content */
.content {
    padding: 40px;
    max-width: 800px;
    margin: auto;
    text-align: left;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #8C6338;
    color: white;
    margin-top: 50px;
}
