* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body{ height:100%;margin:0;}
body{display:flex; flex-direction:column;}
.site-content{
    flex:1;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px; /* wide for desktop */
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    background: #1f2937; /* dark grey */
    color: white;
    padding: 1rem 0;
}

    header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

nav a {
    color: white;
    margin-right: 1rem;
    text-decoration: none;
    font-weight: normal;
}

    nav a:hover {
        text-decoration: underline;
    }

/* Mobile nav */
@media (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        nav a {
            margin: 0.3rem 0;
        }
}

.hero {
    background: #e5e7eb; /* light gray */
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

    .hero h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

.cta-button {
    display: inline-block;
    background: #1f4d2b; /* orange */
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
}

    .cta-button:hover {
        background: #1f2937; /* darker orange */
    }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    font-weight: bold;
}

footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

    footer a {
        color: #f97316;
        text-decoration: none;
    }

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

:root {
    --primary-color: #f97316;
    --secondary-color: #1f2937;
}

.cta-button {
    background: #1f4d2b;
}

header {
    background: var(--secondary-color);
}
.site-header .header-container .logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f8f9fa; /* dark gray */
    text-decoration: none;
}
.site-header {
    text-align: center;
    border-bottom: 2px solid #e5e7eb; /* light gray line */
    padding: 1rem 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.header-container {
    max-width: 1250px; /* same as main content */
    margin: 0 auto; /* centers the container */
    padding: 0 1rem; /* optional side padding */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    
    .site-header .logo a {
        font-size: 1.5rem;
    }

    .site-header nav {
        flex-direction: row;
        gap:20px;
        width: 100%;
        margin-top: 0.6rem;
        
    }
    .facebook-post{
        width: unset!important;
    }

    .contact-details {
        margin-top:10px!important;
        text-align: center;
        background: #e5e7eb;
        border-radius: 8px !important;
        padding: 2rem !important;
       
    }
    .contact-hero {
        margin-top: 25px;
        border-radius:8px;
    }
}

.facebook-post {
    display: block;
    text-align: center;
    height: 675px;
    overflow-y: scroll;
    width: 80%;
    margin: 0px auto;
}

.contact-hero {
    background: #1f4d2b;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    /*margin-top: 15px;*/
}

    .contact-hero h1 {
        margin-bottom: 0.5rem;
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

.contact-details {
    padding: 0 1.5rem;
    text-align: center;
}

    .contact-details h2 {
        margin-bottom: 1rem;
    }

.contact-text {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #444;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.9rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

    .contact-btn.primary {
        background: #1f4d2b;
        color: #fff;
    }

    .contact-btn.secondary {
        background: #e9f2ec;
        color: #1f4d2b;
        border: 2px solid #1f4d2b;
    }

    .contact-btn:hover {
        opacity: 0.9;
    }

.service-area {
    font-size: 0.95rem;
    color: #666;
}

/* Desktop improvement */
@media (min-width: 700px) {
    .contact-actions {
        flex-direction: row;
        justify-content: center;
    }

    .desktop-contact {
        display: flex;
        margin-top: 5%;
    }
    .contact-details {
        margin:0px;
        background: #e5e7eb;
        padding: 2rem;
        border-radius: 8px;
    }
}

/*.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        display: block;
    }

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
}*/

.gallery-header {
    text-align: center;
    margin: 20px 0px;
}



/* slide show*/
.slideshow {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

    .slideshow img {
        width: 100%;
        display: none;
        border-radius: 8px;
    }

        .slideshow img.active {
            display: block;
        }

/* Mobile: show all images stacked */
@media (max-width: 768px) {
    .slideshow img {
        display: block;
        margin-bottom: 1rem;
    }
}