body {
    background-image:url("images/concretebackgound.jpg");
    background-size: cover;
    margin: 0;
    color: white; 
}

.company-name {
    color: darkgreen;
    font-family: 'Oswald', sans-serif;
    font-size: 55px;
    margin: 0;
    line-height: 1;
}

.tagline {
    color: #C07D08;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin: 5px 0 0 0;
}

.hero {
    background-color: black;
    padding: 8px 15px;
    text-align: center;
}

.footer {
    background-color: #111111;
    padding: 15px 20px;
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-top: 80px;
}

.logo {
    width: 350px;
    max-width: 90%;
    height: auto;
}

nav {
    background-color: #2F6B1F;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    text-align: center
   
}

nav a {
    color: lightgrey;
    text-decoration: none;
    margin: 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 20px;
    transition: 0.3s;
}

nav a:hover {
    color: #C07D08;
}

.enq-button {
    background-color: #C07D08;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.enq-button:hover {
    background-color:rgb(1, 59, 1);
    color:#C07D08;
}

.services {
    padding-top: 1px;
    padding-bottom: 60px;
    padding-left: 60px;
    padding-right: 60px;
}

.services-heading {
    font-family: 'Montserrat', sans-serif;
    color: darkgreen;
    font-size: 45px;
    margin-bottom: 10px;
    text-align: center;
}

.service-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.service-card {
    background-color: #C07D08;
    width: 250px;
    height: 180px;
    margin: 20px;
    border-radius: 18px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: lightgrey;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-page {
    background-color: #2F6B1F;
    padding: 30px 50px;
    text-align: center;
    color: lightgrey;
    margin: 30px auto;
    border-radius: 10px;
    max-width: 900px;
}

.service-page ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-page h1 {
    color: #C07D08;
    font-family: 'Oswald', sans-serif;
}

.service-page > p {
    font-size: 22px;
    font-style: italic;
}

.service-page h2 {
    color: #C07D08;
    font-size: 30px;
}

.service-category h3 {
    font-family: 'Oswald', sans-serif;
    color: #999999;
    font-size: 26px;
}

/* Global font setting */
body {
  font-family: 'Oswald', sans-serif; /* Replace with your homepage font */
  margin: 0;
  padding: 0;
}

.btn-enquiries {
  background-color: #ff6600;
  padding: 8px 16px;
  border-radius: 6px;
}

.enquirenow-button {
    display: block;
    width: fit-content;
    margin: 35px auto 50px;
    font-size: 26px;
    background-color: #C07D08;
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.enquirenow-button:hover {
    background-color:rgb(1, 59, 1);
    color:#C07D08;
}

/* Coming Soon Pages */

.coming-soon-page {
    padding: 70px 20px;
    text-align: center;
}

.coming-soon-box {
    background-color: #2F6B1F;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 70px;
    border-radius: 10px;
    text-align: center;
}

.coming-soon-box h1 {
    font-family: 'Oswald', sans-serif;
    color: #C07D08;
    font-size: 50px;
    margin: 25px 0 20px 0;
}

.coming-soon-box p {
    font-family: 'Montserrat', sans-serif;
    color: #B0B0B0;
    font-size: 20px;
    line-height: 1.6;
    max-width: 750px;
    margin: 15px auto;
}

/* Coming Soon stamp */

.coming-soon-stamp {
    display: inline-block;
    border: 6px solid #C07D08;
    color: #C07D08;
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 0.9;
    padding: 15px 25px;
    transform: rotate(-5deg);
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 10px;
}

/* Worn / stamped effect */

.coming-soon-stamp::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 8px;
    right: 8px;
    bottom: 6px;
    border: 2px solid #C07D08;
    opacity: 0.35;
}

.coming-soon-stamp::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 6px;
    background-color: #2F6B1F;
    top: 50%;
    left: -8px;
    transform: rotate(-5deg);
}

/* Mobile */

@media (max-width: 700px) {

    .coming-soon-page {
        padding: 40px 15px;
    }

    .coming-soon-box {
        padding: 40px 25px;
    }

    .coming-soon-box h1 {
        font-size: 38px;
    }

    .coming-soon-box p {
        font-size: 17px;
    }

    .coming-soon-stamp {
        font-size: 32px;
        border-width: 5px;
    }
}

/* Enquiry Page */

.enquiry-page {
    padding: 50px 20px 70px;
    display: flex;
    justify-content: center;
}

.enquiry-box {
    background-color: #2F6B1F;
    max-width: 850px;
    width: 100%;
    padding: 45px 60px 55px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.enquiry-box h1 {
    color: #F28C28;
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.enquiry-intro {
    color: #B0B0B0;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 35px;
}

.enquiry-box form {
    text-align: left;
}

.enquiry-box label {
    display: block;
    color: #A0A0A0;
    font-weight: 700;
    margin: 18px 0 7px;
}

.enquiry-box input,
.enquiry-box textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 15px;
    border: 2px solid #888888;
    border-radius: 5px;
    background-color: #E8E8E8;
    color: #222222;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}

.enquiry-box input:focus,
.enquiry-box textarea:focus {
    outline: none;
    border-color: #F28C28;
}

.enquiry-box textarea {
    resize: vertical;
    min-height: 150px;
}

.enquire-submit {
    display: block;
    margin: 35px auto 0;
    padding: 16px 45px;
    background-color: #C07D08;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}

.enquire-submit:hover {
    background-color: rgb(1, 59, 1);
    color: #C07D08;
}

/* =========================
   ABOUT PAGE
   ========================= */

.about-page {
    padding: 60px 20px 80px;
}

.about-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px;
    background-color: rgba(47, 107, 31, 0.95);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #C07D08;
    font-family: "Oswald", sans-serif;
    font-size: 42px;
}

.about-text h2 {
    margin-bottom: 30px;
    color: #B0B0B0;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

.about-ending {
    margin-top: 30px;
    color: #C07D08 !important;
    font-family: "Oswald", sans-serif !important;
    font-size: 24px !important;
    font-style: italic;
    font-weight: 600 !important;
}

.about-photo {
    flex: 0 0 300px;
}

.about-photo img {
    display: block;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* =========================
   CONTACT & LOCATION PAGE
   ========================= */

.contact-page {
    padding: 60px 20px 80px;
}

.contact-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background-color: rgba(47, 107, 31, 0.95);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.contact-box h1 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #C07D08;
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    text-align: center;
}

.contact-box h2 {
    margin-bottom: 30px;
    color: #B0B0B0;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    text-align: center;
}

.contact-intro {
    max-width: 750px;
    margin: 0 auto 45px;
    color: #B0B0B0;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.contact-details,
.facebook-section {
    flex: 1;
}

.contact-box h3 {
    margin-bottom: 20px;
    color: #C07D08;
    font-family: "Oswald", sans-serif;
    font-size: 27px;
}

.contact-details p,
.facebook-section p {
    margin-bottom: 25px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

.contact-details strong {
    color: #B0B0B0;
}

.contact-details a {
    color: white;
    text-decoration: none;
}

.contact-details a:hover {
    color: #C07D08;
}

.facebook-section {
    text-align: center;
}

.facebook-qr {
    display: block;
    width: 180px;
    height: 180px;
    margin: 25px auto 0;
    padding: 10px;
    background-color: #B0B0B0;
    border-radius: 6px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}

.contact-enquire-button {
    display: block;
    width: fit-content;
    margin: 45px auto 0;
    padding: 16px 45px;
    background-color: #C07D08;
    color: white;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
}

.contact-enquire-button:hover {
    background-color: rgb(1, 59, 1);
    color: #C07D08;
}

footer {
    background-color: #000000;
    color: lightgrey;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 12px;
}

footer a {
    color: lightgrey;
    text-decoration: underline;
    display: block;
    margin-top: 8px;
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-right {
    text-align: right;
}

.footer-centre {
    color: #C07D08;
    text-align: center;
    align-self: center;
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    font-style: italic;
    font-weight: bold;
}

.footer-stripes {
    width: 375px;
    height: 8px;
    margin: 6px auto;
    background: repeating-linear-gradient(
        135deg,
        #2F6B1F 0px,
        #2F6B1F 8px,
        transparent 8px,
        transparent 16px
    );
}

.terms-page {
    padding: 40px 20px;
    background-color: darkgrey;
}

.terms-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 50px;
    background-color: #cecece;
    color: #222222;
    font-family: 'Montserrat', sans-serif;
}

.terms-box h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: #2F6B1F;
    text-align: center;
}

.terms-box h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #2F6B1F;
    margin-top: 25px;
    margin-bottom: 10px;
}

.terms-box p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.terms-box ul {
    margin: 5px 0 15px 25px;
    padding: 0;
}

.terms-box li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 3px;
}

.privacy-page {
    padding: 40px 20px;
    background-color: darkgrey;
}

.privacy-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 50px;
    background-color: #CECECE;
    color: #222222;
    font-family: 'Montserrat', sans-serif;
}

.privacy-box h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: #2F6B1F;
    text-align: center;
}

.privacy-box h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #2F6B1F;
    margin-top: 25px;
    margin-bottom: 10px;
}

.privacy-box p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.privacy-box ul {
    margin: 5px 0 15px 25px;
    padding: 0;
}

.privacy-box li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 3px;
}

/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (max-width: 700px) {

    /* Prevent accidental horizontal overflow */
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* =========================
       HEADER
       ========================= */

    .hero {
        padding: 8px 10px;
    }

    .logo {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    /* =========================
       NAVIGATION
       ========================= */
    nav {
    padding: 12px 10px;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: center;
    gap: 10px 18px;
    }

    nav a {
        margin: 0;
        font-size: 16px;
    }

    .enq-button {
        padding: 9px 18px;
    }

    /* =========================
       SERVICES
       ========================= */

    .services {
        padding: 1px 15px 50px;
    }

    .services-heading {
        font-size: 38px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .service-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .service-card {
        width: min(250px, 90%);
        height: 180px;
        margin: 12px auto;
        flex-shrink: 0;
    }

    /* =========================
       FOOTER
       ========================= */

    footer {
        padding: 15px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-left,
    .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-centre {
        order: -1;
        font-size: 24px;
        line-height: 1.2;
    }

    .footer-stripes {
        width: 100%;
        max-width: 300px;
    }

    /* =========================
       ABOUT
       ========================= */

    .about-page {
        padding: 40px 15px 60px;
    }

    .about-box {
        padding: 30px 20px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-photo {
        flex: none;
        width: 100%;
        max-width: px;
    }

    .about-text h1 {
        font-size: 36px;
    }

    /* =========================
       CONTACT
       ========================= */

    .contact-page {
        padding: 40px 15px 60px;
    }

    .contact-box {
        padding: 30px 20px;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-box h1 {
        font-size: 36px;
    }

    /* =========================
       SERVICE PAGES
       ========================= */

    .service-page {
        margin: 20px 15px;
        padding: 25px 20px;
    }

    /* =========================
       TERMS & PRIVACY
       ========================= */

    .terms-page,
    .privacy-page {
        padding: 25px 15px;
    }

    .terms-box,
    .privacy-box {
        padding: 25px 20px;
    }

    .terms-box h1,
    .privacy-box h1 {
        font-size: 28px;
    }

    /* =========================
       ENQUIRY
       ========================= */

    .enquiry-page {
        padding: 30px 15px 50px;
    }

    .enquiry-box {
        padding: 30px 20px 40px;
    }

    .enquiry-box h1 {
        font-size: 36px;
    }
}

@media (min-width: 600px) and (max-width: 900px) and (orientation: portrait) {

    /* =========================
       TABLET PORTRAIT SERVICES
       ========================= */

    .service-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .service-card {
        width: 250px;
        height: 180px;
        margin: 0;
        flex-shrink: 0;
    }

    /* =========================
       TABLET PORTRAIT FOOTER
       ========================= */

    html,
    body {
        min-height: 100vh;
    }

    body {
        display: flex;
        flex-direction: column;
    }

    footer {
        margin-top: auto;
    }
}