/* GLOBAL */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Libre Baskerville', serif;
    background: #FFF8EC;
    color: #333;
}

section {
    padding: 60px 40px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    background: #546B41; /* NEW GREEN */
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.navbar nav a {
    margin-left: 22px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #DD9E59;
}

.quote-btn {
    padding: 8px 16px;
    background: #DD9E59;
    color: white;
    border-radius: 6px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
}

.quote-btn:hover {
    background: #c98a4c;
}

/* HERO */
.hero {
    position: relative;
    height: 70vh;
    background: url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(70%);
}



/* Soft overlay so text stays readable */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #DD9E59;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

.hero-btn:hover {
    background: #c98a4c;
}



/* SERVICES PREVIEW */
.services-preview {
    text-align: center;
}

.services-preview h2 {
    font-size: 32px;
    color: #546B41;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-box {
    padding: 25px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    color: #546B41;
    margin-bottom: 10px;
}

/* ---------------------- */
/*     SERVICES PAGE      */
/* ---------------------- */

.services-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #FFF8EC;
    font-family: 'Libre Baskerville', serif;
}

.services-section h1 {
    text-align: center;
    font-size: 40px;
    color: #546B41;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-subtext {
    text-align: center;
    font-size: 18px;
    color: #546B41;
    margin-bottom: 40px;
}

/* CATEGORY HEADERS */
.service-category {
    font-size: 28px;
    color: #546B41;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 15px;
    border-left: 6px solid #DD9E59;
    padding-left: 12px;
}

/* LIST STYLING */
.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-list li {
    background: white;
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    font-size: 17px;
    color: #333;
    border-left: 4px solid #DD9E59;
    transition: 0.2s ease;
}

/* HOVER EFFECT */
.service-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .services-section h1 {
        font-size: 32px;
    }

    .service-category {
        font-size: 24px;
    }

    .service-list li {
        font-size: 16px;
    }
}


/* SECTION BUTTONS */
.section-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #DD9E59;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 25px;
}

.section-btn:hover {
    background: #c98a4c;
}

/* BEFORE & AFTER PREVIEW */
.ba-preview {
    text-align: center;
}

.ba-preview h2 {
    font-size: 32px;
    color: #546B41;
    margin-bottom: 20px;
}

.ba-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 40px auto;
}

.ba-container img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    border-radius: 10px;
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #546B41;
    cursor: ew-resize;
    transform: translateX(-2px);
}

/* FOOTER */
.footer {
    background: #546B41;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer p {
    margin: 5px 0;
    font-size: 16px;
}

.footer .copyright {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* RESPONSIVE NAVBAR */
@media (max-width: 900px) {
    .navbar nav {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .navbar nav a {
        margin-left: 0;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .navbar nav {
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
    }

    .quote-btn {
        width: fit-content;
        margin: 0 auto;
    }
}

.ba-container img {
    width: 100%;
    height: 400px; /* or 350px, 450px — whatever looks best */
    object-fit: cover;
}

/* ---------------------- */
/*      GALLERY PAGE      */
/* ---------------------- */

.gallery-section {
    padding: 40px 20px !important;
    background: #FFF8EC;
    max-width: 1100px;
    margin: 0 auto;
}

/* TITLE */
.gallery-section h1 {
    text-align: center;
    font-size: 36px;
    color: #546B41;
    font-weight: 700;
    margin-bottom: 10px;
}

/* SUBTEXT */
.gallery-subtext {
    text-align: center;
    font-size: 18px;
    color: #546B41;
    margin-bottom: 40px;
}

/* CATEGORY TITLE */
.gallery-category {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #546B41;
    font-size: 28px;
    font-weight: 700;
    border-left: 6px solid #DD9E59;
    padding-left: 12px;
}

/* PROJECT TITLE */
.project-title {
    margin-top: 40px;
    margin-bottom: 10px;
    color: #546B41;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

/* BEFORE & AFTER SIDE-BY-SIDE */
.before-after-pair {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.before-box,
.after-box {
    width: 48%;
    min-width: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: white;
    text-align: center;
}

/* IMAGES */
.before-box img,
.after-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center center;
}

/* LABELS */
.label {
    font-weight: 700;
    color: #546B41;
    padding: 10px 0;
    background: #FFF8EC;
}

/* ---------------------- */
/*     FREE QUOTE PAGE    */
/* ---------------------- */

.quote-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #FFF8EC;
}

.quote-section h1 {
    text-align: center;
    font-size: 38px;
    color: #546B41;
    font-weight: 700;
    margin-bottom: 10px;
}

.quote-subtext {
    text-align: center;
    font-size: 18px;
    color: #546B41;
    margin-bottom: 40px;
}

.quote-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #546B41;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #DD9E59;
    outline: none;
}

.form-group textarea {
    height: 140px;
    resize: none;
}

.quote-submit {
    width: 100%;
    padding: 14px;
    background: #DD9E59;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.quote-submit:hover {
    background: #c98a4c;
}

/* ---------------------- */
/*       REVIEWS PAGE     */
/* ---------------------- */

.reviews-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #FFF8EC;
}

.reviews-section h1 {
    text-align: center;
    font-size: 40px;
    color: #546B41;
    font-weight: 700;
    margin-bottom: 10px;
}

.reviews-subtext {
    text-align: center;
    font-size: 18px;
    color: #546B41;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #DD9E59;
    font-size: 20px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.review-name {
    font-weight: 600;
    color: #546B41;
}

.review-buttons {
    text-align: center;
    margin-top: 40px;
}

.google-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #DD9E59;
    color: white;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 15px;
    transition: 0.3s;
}

.google-btn:hover {
    background: #c98a4c;
}

.google-link {
    color: #546B41;
    font-weight: 600;
    text-decoration: underline;
}



