body {
    margin: 0;
    padding: 0;
    font-family: 'Encode Sans Semi Condensed', sans-serif;
    color: #333;
}

header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    /* background-color: rgba(0, 0, 0, 0.7); */
    /* padding: 5px 0; */
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.logo {
    width: 15%
}

/* header.sticky {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
} */

/* Menu icon styles */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: -27%;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.5s;
    /* padding-top: 60px; */
}

/* .side-nav ul {

} */

.side-nav li {
    list-style-type: none;
}

.side-nav a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 2.5vh;
    color: black;
    display: block;
    margin-bottom: 15%;
    margin-left: 70%;
    text-align: center;
    width: 100%;
    background-color: #ffb347;
    transition: 0.3s;
}

.side-nav a:hover {
    background-color: #444;
}

.side-nav .close-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    cursor: pointer;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    width: 150px;
}

.bigger-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.bigger-nav li {
    margin-left: 20px;
}

.active {
    font-weight: 500;
    color:#ffb347
}

.bigger-nav li a {
    text-decoration: none;
    color: white;
    font-size: 2vh;
    padding: 5px 10px;
    font-weight: 100;
    transition: 0.3s ease;
}

.bigger-nav li a:hover {
    /* background-color: #ffcc80; */
    color:#ffb347
}

.services-hero {
    background: url('media/BrownBackground.jpg') no-repeat center center;
    background-size: cover;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.services-details {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: rgb(243, 243, 243);
    border: 1px solid #ffb347;;
    /* border-radius: 8px; */
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card img {
    max-width: 50%;
    /* border-radius: 8px 8px 0 0; */
}

.service-card h3 {
    margin: 15px 0 10px;
}

.service-card p {
    color: #666;
}

.service-card:hover {
    transform: translateY(-10px);
}

#additional-services {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 6%;
}

#additional-services h2 {
    font-size: 4vh;
    margin-bottom: 40px;
    color: #ffcc80;
}

.additional-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    background-color: #333;
    padding: 20px;
    /* flex: 1 1 300px; */
    max-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.additional-info {
    margin-top: 40px;
    font-size: 2vh;
    color: #ffcc80;
}

@media (max-width: 768px) {
    .additional-services-list {
        flex-direction: column;
        align-items: center;
    }
}


/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 3%;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    flex: 1 1 200px;
    padding: 10px;
}

.footer-section h3 {
    font-size: 2.5vh;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section ul,
.footer-section a {
    font-size: 2vh;
    line-height: 1.6;
    margin-bottom: 10px;
    color: white;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section .social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-section .social-icon {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 1.5vh;
}

@media (max-width: 480px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .menu-icon {
        display: flex;
    }

    .bigger-nav {
        display: none;
    }
}
