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;
}

/* header.sticky {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
} */

.logo {
    width: 15%;
}

/* 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
}

.about-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;
}

.about-hero h1 {
    font-size: 6vh;
    margin: 0;
}

.about-hero p {
    font-size: 2.5vh;
    margin-top: 10px;
}

.about-details {
    padding: 60px 20px;
    background-color: white;
    color: #333;
}

.mission-vision {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mission,
.vision {
    flex: 1;
    margin: 0 20px;
    text-align: center;
    border:#ffb347 solid 2px;
    background: rgb(238, 238, 238);
    padding: 4%; 
    /* color: white; */
}

.mission h2,
.vision h2 {
    font-size: 4vh;
    margin-bottom: 10px;
}

.about-history {
    text-align: center;
    margin-bottom: 40px;
    padding: 4%;
    background: rgb(238, 238, 238);
    border:#ffb347 solid 2px;
}

.about-history img {
    width: 80%;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.team {
    text-align: center;
    margin-bottom: 40px;
}

.team h2 {
    font-size: 4vh;
    margin-bottom: 20px;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    flex: 1 1 300px;
    text-align: center;
}

.team-member img {
    width: 20%;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.team-member h3 {
    margin-top: 10px;
    font-size: 3vh;
}

.our-values {
    text-align: center;
    margin-bottom: 40px;
}

.our-values h2 {
    font-size: 4vh;
    margin-bottom: 20px;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.value-item {
    background-color: #f9f9f9;
    padding: 20px;
    border:#ffb347 solid 2px;
    /* border-radius: 10px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    text-align: center;
}

.value-icon {
    font-size: 40px;
    color: #ffcc80;
    margin-bottom: 10px;
}

/* 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) {
    .hero-content {
        width:70%
    }
    .about-hero h1 { 
        font-size: 4vh;
    }

    .hero-content h2 {
        font-size: 3.5vh;
    }

    .menu-icon {
        display: flex;
    }

    .bigger-nav {
        display: none;
    }

    .mission-vision {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 50px;
        margin-bottom: 40px;
    }

    .team-member img {
        width: 90%
    }
}