:root {
    --primary-font: 'Besley', serif;
    --secondary-font: 'Roboto', sans-serif;
    --footer-bg: #6b3620;
    /* Brown color picked from image */
    --text-color: #ffffff;
    --card-bg: #5b534e;
    /* Dark grey/brown for card */
}

body {
    font-family: var(--primary-font);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    /* Optional: adds subtle separation */
}

.logo {
    max-height: 60px;
    /* Adjust based on actual logo size */
}

/* Hero Section */
.hero-section {
    flex: 1;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    /* Ensure enough height */
    position: relative;
}

/* Content Card */
.content-card {
    background: url('../images/bgText.jpg') center/contain no-repeat;
    color: #fff;
    position: relative;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
    /* The outer border is the card itself */
}

.card-border {
    /* border: 2px solid #a0958d; */
    /* Light border inside */
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
    /* Text seems left aligned or justified in image, but centered in card? Image shows left-ish */
    text-align: justify;
    text-align-last: left;
}

.drop-cap {
    font-size: 1.5em;
    float: left;
    line-height: 0.8;
    margin-right: 2px;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: #fff;
    font-family: var(--secondary-font);
}

footer a:hover {
    text-decoration: underline !important;
}

footer p {
    font-weight: 400;
}

footer .small {
    font-size: 0.9rem;
    opacity: 0.9;
}