@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Open+Sans:wght@400;600&display=swap');

:root {
    --cream: #f4f1e8;
    --midnight-green: #0b2b1f;
    --header-green: #082016;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--midnight-green);
    color: var(--cream);
}

/* HEADER */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: var(--header-green);
    border-bottom: 2px solid var(--cream);
}

.logo-title {
    display: flex;
    align-items: center;
    background-color: var(--header-green);
    padding: 10px;
    border-radius: 12px;
}

.logo-title img {
    height: 110px;
    margin-right: 20px;
    background-color: var(--header-green);
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--cream);
    white-space: nowrap;
}

.contact-top {
    text-align: right;
    font-size: 16px;
}

/* CLICKABLE PHONE */
.phone-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    text-decoration: underline;
}

/* SOCIAL LINKS */
.contact-top a:not(.phone-link) {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.contact-top a:not(.phone-link):hover {
    text-decoration: underline;
}

/* NAVIGATION */
nav {
    background-color: #000000;
    border-bottom: 1px solid var(--cream);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    margin: 15px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--cream);
}

.menu-toggle {
    display: none;
    color: var(--cream);
    font-weight: bold;
    cursor: pointer;
    padding: 15px;
}

/* MAIN CONTENT */
.main-content {
    background-color: var(--cream);
    color: #000000;
    margin: 60px auto;
    padding: 50px;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.main-content h2 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    font-size: 2.5em;
}

.contact-note {
    font-size: 0.9em;
    margin-top: 0.25em;
    margin-bottom: 1.25em;
    line-height: 1.4;
}

.main-content h3 {
    color: #000000;
    text-decoration: underline;
}

.main-content p {
    font-size: 1.2em;
}

.main-content li {
    margin: 10px 0;
}

/* FOOTER */
footer {
    background-color: var(--header-green);
    color: var(--cream);
    text-align: center;
    padding: 25px;
    border-top: 1px solid var(--cream);
}

footer a:not(.phone-link) {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

footer a:not(.phone-link):hover {
    text-decoration: underline;
}

/* testimonial*/
.testimonial {
    background: var(--cream);
    border-left: 4px solid var(--cream);
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
    font-style: italic;
    color: var(--midnight-green);
}

.testimonial strong {
    display: block;
    margin-top: 10px;
    font-style: normal;
    color: var(--midnight-green);
}
/* Services Img */
.service-image {
    max-width: 280px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.image-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
/* index image */
.index-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
/* MOBILE */
@media (max-width: 900px) {

    .top-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .logo-title {
        flex-direction: column;
        align-items: center;
    }

    .logo-title img {
        height: 85px;   /* smaller logo on phone */
        margin: 0 0 10px 0;
    }

    .site-title {
        font-size: 20px;   /* smaller title */
        white-space: normal;  /* allow wrapping */
        text-align: center;
    }

    .contact-top {
        margin-top: 10px;
        font-size: 12px;
        text-align: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        margin: 12px 0;
        font-size: 15px;
    }

    .menu-toggle {
        display: block;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .main-content {
        margin: 25px 15px;
        padding: 25px;
    }
}