body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #AEC6CF; /* wood-like brown */
    color: #333;
}


/* HEADER */
.hero {
    height: 350px;
    background-image: url("images/header.png"); /* ADD HEADER IMAGE HERE */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Header content (logo + title) */
.header-content {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 120px;
}

/* Header title */
.header-title {
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* improves readability */
}

/* NAV */
.nav {
    background: #2c3e50;
    padding: 15px;
    text-align: center;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
}

.nav a:hover {
    text-decoration: underline;
}

.brackets {
    font-size: 10pt;
}

.agape {
    font-family: "Palace Script MT", cursive;
    font-size: 60px; /* px is better than pt for web */
    font-weight: normal;
    margin: 0 5px;
    font-weight: bold;
}


/* MAIN */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #e6f2f8; /* light blue */
    border-radius: 8px;
}

.logo-large {
    width: 150px;
}

.intro {
    text-align: center;
}

h1, h2 {
    color: #2c3e50;
}

hr {
    margin: 40px 0;
}

.address {
    font-style: normal;
    font-size: 18px;
}

/* CONTACT */
.contact-section {
    text-align: center;
}

.contact-photo {
    width: 250px;
    border-radius: 8px;
    margin-top: 15px;
}

.contact-name {
    font-size: 20px;
    margin-top: 10px;
}

.contact-phone {
    font-size: 18px;
}

/* SLIDER */
.slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider img {
    width: 70%;
    max-height: 400px;
    object-fit: cover;
    border: 3px solid #ccc;
    border-radius: 6px;
}

.prev, .next {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 20px;
}

/* FOOTER */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 10px;
}

.footer-logo {
    width: 100px;
}

.footer-nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.contact-phone a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

.contact-phone a:hover {
    text-decoration: underline;
}
