*{
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
    font-family: Helvetica, Arial, sans-serif;
    /* Image background stuff */
    /* will replace bg image with office */

    /* background-image: url(city\ index\ image.jfif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */

}

nav{
    /* Deep purple */
    /* background-color: rgba(131,76,191,255); */
    /* White */
    position: relative;
    background-color: white; 
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2) !important;

}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-self: flex-end;
    align-items: center;
}

nav li{
    height: 60px;
}

nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}

nav a:hover{
    /* Grey hover colour */
    /* background-color: lightgrey; */
    /* Light purple hover colour */
    background-color: rgba(183,137,186,255);
}

nav li:first-child{
    margin-right: auto;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgb(0,0,0,0.1);
    display: none;
    /* display: flex; */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li{
    width: 100%;
}

.sidebar a{
    width: 100%;
}

.menu-button{
    display: none;
}

.mobileLogo{
    display: none;  /* Hide by default */
    margin-left: auto;
    margin-right: auto;
    width: 200px;    
}

html, body{
    overflow-x: hidden;
}

.hero-section{
    /* <a href="http://www.freepik.com">Designed by Harryarts / Freepik</a> */
    background-image: url(purplebackground\ \(2\).jpg);
    max-width: 100%;
    height: 825px;
    background-image: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 10px 20px 10px rgb(0,0,0,0.1) ;
    z-index: 1;
    padding: 2em;
}

.image-attribution {
    text-align: center;
    font-size: 1px;
    background-color: #ffffff;
    text-decoration: none;
}

.hero-content{
    width: 50%;
    padding: 0 2em;
    max-width: 600px;
}

.hero-section h1{
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 64px;
    width: 400px;
    text-transform: capitalize;
}

span{
    color: rgba(118,65,143,255);
}

.hero-section p{
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    width: 309px;
    padding: 30px 0px;
}

.hero-section button{
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: white;
    border-radius: 50px;
    width: 135px;
    height: 65px;
    background-color: rgba(118,65,143,255);
    border: none;
}

.hero-section button:hover{
    background-color: rgb(193,164,204);
}

.hero-image{
    margin-left: 20px; 
    width: 25%;
}

.hero-image img{
    max-width: 100%; 
    width: 200px; 
    height: auto;
    margin-left:0; 
}

.services{
    max-width: 100%;
    margin: 0 auto;
    background-color: rgb(253, 243, 253);
    border-radius: 2%;
    box-shadow: 0 5% 1% rgba(0, 0, 0, 0.1);
}
.services h1 {
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 180%;
    color: white;
    backdrop-filter: blur(10px);
    background-color: #76408c;
    padding: 2%;
    margin-bottom: 3%;
}

.services ul {
    list-style-type: none; 
    padding-left: 5%;
    font-size: 2vh;
}

.services li {
    font-size: 3vh;
    color: black;
    padding-top: 0.5%;
    /* padding-left: 10%; */
    padding-bottom: 2%;
    position: relative;
    padding-left: 2.5rem;
}

.services li::before{
    content: "✔"; 
    position: absolute;
    /* left: 6.5%; */
    left: 0;
    color: green;
    font-weight: bold;
    padding-right: 5%;
}

.image-container {
    display: flex;
    background-color: rgb(253, 243, 253);
    justify-content: center; /* Centers images horizontally */
    align-items: center; /* Aligns images vertically */
    gap: 10%; /* Adds space between images */
    padding: 5%;
}

.image-container img {
    height: 90px; /* Set a uniform height */
    width: auto; /* Maintain aspect ratio */
}

.section{
   padding: 5%; 
}

.custom-shape-divider-top-1742045798 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.cool-section {
    position: relative;
    background: linear-gradient(45deg, #b889bb,#9c74ac ); /* Gradient background */
    color: white; /* White text */
    padding: 10vh ;
    text-align: center;
    height: 35vh;
}

/* Wrapper for the section */
.find-us-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left side: Location information */
.location-info {
    width: 100%; /* Take up 45% of the container */
}

.location-info h2 {
    font-size: 3vh;
    color: white;
    margin-bottom: 2vh;
    text-align: left;
}

.location-info p,
.location-info address {
    font-size: 2vh;
    color: white;
    text-align: left;
}

.location-info address {
    font-style: normal; /* Makes the address look normal */
    line-height: 1.5;
}

/* Right side: Google Map */
.map-container {
    width: 1000vh;
    height: 50vh /* Take up 50% of the container */
}

.map-container iframe {
    width: 100%;
    height: 40vh;
    border-radius: 5%;
    padding-left: 2%;
}

.allPage {
    max-width: 100%;
    margin: 0 auto; /* Center it */
    background-color: rgb(253, 243, 253); /* Same background as .services */
    box-shadow: 50% 50% 10% rgba(0, 0, 0, 0.1);
    padding: 5%; /* Adds spacing so content inside doesn’t touch edges */
    position: relative; /* Ensures H1 positioning works properly */
}

.allPage h1{
    font-family: Helvetica, Arial, sans-serif;
    text-align: left;
    font-size: 180%;
    color: rgba(118,65,143,255);
    backdrop-filter: blur(10px);
    /* background-color: rgb(253, 243, 253); */
    margin-top: 2%;
    margin-bottom: 2%;
}

.allPage p{
    font-size: 3vh;
    margin-bottom: 1%;
}

.allPage ul {
    margin-top: 1%; /* Space above the list */
    margin-bottom: 2%; /* Space below the list */
}

.allPage li {
    font-size: 3vh; /* Match paragraph font size */
    padding: 0.5%; /* Consistent padding like <p> */
    list-style-type: none; /* Keeps default bullet points */
}

.allPage a {
    color: #76408c; /* Match theme color */
    text-decoration: none; /* Remove default underline */
    font-weight: bold; /* Make it stand out */
}

.allPage a:hover {
    text-decoration: underline; /* Add underline when hovered */
    color: #9c74ac; /* Slightly lighter color on hover */
    text-decoration: none;
}

.aboutPage {
    max-width: 100%;
    margin: 0 auto; /* Center it */
    background-color: rgb(253, 243, 253); /* Same background as .services */
    box-shadow: 50% 50% 10% rgba(0, 0, 0, 0.1);
    padding: 5%; /* Adds spacing so content inside doesn’t touch edges */
    position: relative; /* Ensures H1 positioning works properly */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aboutPage h1{
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 180%;
    color: rgba(118,65,143,255);
    backdrop-filter: blur(10px);
    /* background-color: rgb(253, 243, 253); */
    margin-top: 2%;
    margin-bottom: 2%;
    margin-right: 2%;
    margin-left: 2%;
}

.aboutPage p {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 3vh;
    margin-bottom: 2%; 
}

.aboutPage img {
    width: 50vh; /* Adjust width */
    height: 50vh; /* Adjust height */
    border-radius: 20%; /* Makes it a pill shape */
    object-fit: cover; /* Ensures the image fills the shape properly */
}


.hours-container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centers both horizontally and vertically */
    margin-top: 2%;
}

.hours {
    flex: 1; /* Allows the hours section to take available space */
}

.office-image {
    flex: 0 0 auto; /* Prevents the image from growing */
    width: 45%; /* Adjust width as needed */
}


.footer{
    background-color: rgba(118,65,143,255);
    padding: 2em 0;
}

.footer-col{
    width: 25%;
    padding: 0 20px;
}

.container{
    max-width: 1170px;
    background-color: rgba(118,65,143,255);
    margin:auto;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

.footer-col h2{
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 35px;
    position: relative;
}

.footer-col h2::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #ffffff;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul{
    list-style-type: none;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: 16px;
    color: white;
    font-weight: 300;
    color: white;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
}

/* scuffed mobile responsiveness */
@media(max-width: 800px){
    .hideOnMobile{
        display: none;
    }
    .mobileLogo{
        display: flex;
    }
    .menu-button{
        display: block;
    }
    .hero-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .hero-img {
        margin-top: 20px;
        width: 100%;
        margin-left: 0;
        display: flex;
        justify-content: center;
    }

    .hero-img img {
        max-width: 200px;
    }

}

@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}

@media(max-width: 900px) {
    .hero-container {
        flex-direction: column; 
        align-items: center; 
    }

    .hero-text {
        width: 100%;  
        text-align: center;  
    }

    .hero-image {
        margin-top: 20px; 
        width: 100%;  
        max-width: 150px;  
    }

    .hero-section h1 {
        font-size: 2em;
        margin-bottom: 0.5em;
    }
}

@media (max-width: 500px) {
    /* Hide the image and only show text on very small screens */
    .hero-img {
        display: none;
    }

    .office-image {
        display: none;
    }

}

@media screen and (max-width: 768px) {
    /* Hide all images by default */
    .image-container img {
        display: none;
    }

    /* Display the second image (middle image) in the center */
    .image-container img:nth-child(1) {
        display: block;
        margin: 0 auto; /* Center the image */
        width: 50%; /* Adjust size if needed */
    }
}


@media screen and (max-width: 500px) {
    .map-container iframe {
        height: 80%; /* Square map for smaller screens */
        display: none;
    }
}

@media (min-width: 768px) {
    .aboutPage {
        text-align: left;
    }
}
