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
}

.contact-hero {
    background: url('media/BrownBackground.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}
/* 
.contact-hero h1{
    margin-top: 15%
} */

.contact-details {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    max-width: 600px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #666;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h3 {
    margin-bottom: 10px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #007BFF;
}

.contact-image img {
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.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) {
    .menu-icon {
        display: flex;
    }

    .bigger-nav {
        display: none;
    }
}

