﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #000;
    background: #fafafa;
    line-height: 1.6;
}

.container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}


/* ============================
   HEADER
   ============================ */

/* STICKY HEADER */

.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header {
    background: #000;
    padding: 15px 0;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* .header {
    width: 100%;
    background: #000; 
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}*/

/* LOGO AREA */
.logo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}


    .logo a {
        display: block;
        align-items: center;
        text-decoration: none;
    }

.logo-img {
    height: 100px; /* Adjust as needed */
    width: auto;
    margin-right: 12px;
}

.logo-text {
    color: #fff; /* White text on black header */
    font-family: 'Arial';
    font-size: 2.3rem;
    font-weight: bold;
    text-shadow: 3px 3px #8499B6;
    white-space: nowrap;
    margin-right: 30px;
}

.title-text {
    color: #000;
    font-family: 'Arial';
    font-size: 2.3rem;
    font-weight: bold;
    text-shadow: 3px 3px rgba(0,0,0,0.25);
    margin-left: 30px;
}

.page-header {
    background: linear-gradient(to bottom, #f5f5f5, #cac3c3);
    padding: 25px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 25px;
}

.page-header1 {
    background: linear-gradient(to bottom, #ffffff, #3a3a3a);
    padding: 40px 0;
    border-bottom: none;
}

.page-header2 {
    background: linear-gradient(135deg, #eeeeee, #cfcfcf);
    padding: 30px 0;
}



/* NAVIGATION */
.navxx a {
    margin-left: 20px;
    text-decoration: none;
    color: #fff; /* White nav links */
    font-weight: 500;
    transition: color 0.25s ease;
}

    .navxx a:hover {
        color: #00aaff; /* Accent colour */
    }

nav a {
    color: #ffffff;
    position: relative;
    padding: 0 18px; /* Adds spacing between menu items */
    transition: color 0.25s ease; /* Smooth text colour fade */
    text-decoration: none;
}

    /* Text colour change on hover */
    nav a:hover {
        color: #509ee0; /* Slightly lighter grey/white */
    }

    /* Underline slide-in */
    nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px; /* Slightly lower for a cleaner look */
        width: 0%;
        height: 2px;
        background: #e0e0e0; /* Matches hover text colour */
        transition: width 0.3s ease;
    }

    nav a:hover::after {
        width: 100%;
    }




/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #000; /* Black mobile menu */
    border-bottom: 1px solid #333;
}

    .mobile-menu a {
        padding: 15px;
        border-top: 1px solid #333;
        text-decoration: none;
        color: #fff;
    }

    .mobile-menu.open {
        display: flex;
    }

/* ============================
   MAIN CONTENT
   ============================ */
.main-content {
    padding: 10px 0;
}

/* HERO SECTION */
.hero {
    background: #e9eef3;
    padding: 30px 30px;
    text-align: center;
    border-radius: 8px;
}

    .hero h1 {
        font-size: 2.3rem;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1.2rem;
    }

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.grid-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.fullwidth-image {
    width: 100%;
    margin: 0px;
    padding: 0px;
}

    .fullwidth-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.heroVideo {
    width: 80%;
    margin: 0 auto;
    height: 70vh; /* adjust to taste */
    object-fit: cover;
    display: block;
}

.page-hero {
    background: url('/images/header-bg.jpg') center/cover no-repeat;
    padding: 10px 0;
    text-align: left;
    color: #000;
}

    .page-hero h1 {
        margin: 0;
        font-size: 2.4rem;
        font-weight: 700;
        text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    }


.divDesignImg {
    /*  float: left;*/
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    padding-left: 20px;
    text-align: center;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    align-items: flex-start;
    padding-left: 40px;
    padding-right: 40px;
}

.contact-name {
    font-size: 1.6rem; /* Larger but not oversized */
    font-weight: 600; /* Strong but not heavy */
    letter-spacing: 0.5px; /* Slightly more refined */
    margin-bottom: 8px; /* Breathing room below */
    display: block; /* Ensures clean spacing */
}



.contact-info {
    flex: 1;
    font-size: 1.1rem;
}

    .contact-info a {
        color: #000;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

.panel-tint {
    background: #f1ecec; /* Light grey tint */
    margin: 10px;
    padding: 25px; /* Breathing room */
    border-radius: 20px; /* Soft corners */
    border: solid;
    border-color: #c0bbbb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* Gentle depth */
    margin-bottom: 30px; /* Space before footer */
}

.contact-map {
    flex: 1;
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.map-card {
    width: 100%;
    height: 350px;
    border-radius: 12px; /* Smooth rounded corners */
    overflow: hidden; /* Ensures iframe corners follow the radius */
    box-shadow: 0 6px 18px rgba(0,0,0,0.15); /* Soft, modern shadow */
    padding: 0; /* No padding unless you want a frame */
    background: #fff; /* Ensures clean edges */
}



/* ============================
   FOOTER
   ============================ */
.footer {
    background: #000;
    color: #fff;
    padding: 25px 0;
}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Desktop: icons left, copyright centered */
.footer-social {
    position: absolute;
    left: 30px;
    display: flex;
    gap: 15px;
    background-color: pink;
}

    .footer-social img {
        height: 32px;
        width: auto;
    }

.footer-copy {
    margin: 0;
    text-align: center;
    width: 100%;
}

.logo-phone {
    margin-top: 5px;
    /*width: 100%;*/
    text-align: center; /* or center if you prefer */
    color: #fff; /* White text on black header */
    font-family: 'Arial';
    font-size: 2.3rem;
    font-weight: bold;
    text-shadow: 3px 3px #8499B6;
    /*   display: block;
    flex-wrap: wrap; */
}


/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: static;
    }

    .footer-social {
        position: static;
        margin-bottom: 10px;
        justify-content: center;
    }

    .footer-copy {
        width: auto;
        text-align: center;
    }

    .logo-phone {
        margin-top: 5px;
        width: 100%;
        text-align: center; /* or center if you prefer */
        color: #fff; /* White text on black header */
        font-family: 'Arial';
        font-size: 2.3rem;
        font-weight: bold;
        text-shadow: 3px 3px #8499B6;
        display: flex;
        flex-wrap: wrap;
    }

    .contact-wrapper {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }
}

html {
    height: 100%;
    overflow-y: auto; /* allow html to size normally */
}

body {
    height: 100%;
    overflow-y: scroll; /* THIS is the key line */
    overflow-x: hidden;
}

.divHomeImg {
    width: 98%;
    margin: auto;
    padding-bottom: 10px;
    text-align: center;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.divContactImg {
    float: left;
    width: 98%;
    margin: auto;
    padding-bottom: 10px;
    text-align: center;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.divDesign3 {
    float: left;
    width: 98%;
    margin: 2px;
    border-width: 10px;
    border-color: silver;
    border-style: groove;
}

.img-responsive {
    width: 100%;
    height: auto;
}


.icon {
    display: inline-flex;
    align-items: center;
    margin-right: 6px;
    vertical-align: middle;
}

    .icon svg {
        width: 20px;
        height: 20px;
        stroke: #444;
    }


.whatwedo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    padding: 20px 30px;
    align-items: start; /* ← top-aligns content in each cell */
}

.wwd-text {
    font-size: 1.5rem;
    line-height: 2;
}

.wwd-image img {
    width: 100%;
    max-width: 750px; /* ← controls how big the image can get */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto; /* centres the image in its cell */
}


/* Mobile layout */
@media (max-width: 768px) {
    .whatwedo-grid {
        grid-template-columns: 1fr;
    }
}
