/* General reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: #FFF7D7;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    width: inherit;
}

/* Hamburger Menu Icon */
.menu-icon {
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    color: #F3C512;
}

.menu-icon:hover {
    color: #d4a20a;
}

.Icon{
    width:30px;
    padding: 10px;
}

/* Search Icon */
.search-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin-left: 10px;
    color: #F3C512;
}

.search-icon:hover {
    color: #d4a20a;
}

/* Search Bar (Hidden by Default) */
.search-bar {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.hidden {
    display: none;
}

.search-bar input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
   padding-right: 0;
}

.search-bar  button {
    padding: 8px 16px;
    background-color: #F3C512;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.search-bar button:hover {
    background-color: #d4a20a;
}

.logo {
    margin-left: auto;
    margin-right: 20px;
}

.logo img {
    height: 3.5em;
    width: auto;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: -280px; /* Hidden off-screen */
    height: 100%;
    width: 250px;
    background-color: #ffffff;
    padding: 10px;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    border:#FFF7D7 solid;
}

.navigation ul {
    list-style-type: none;
    padding: 0;
    margin: 50px 0 0 0;
}

.navigation ul li {
    margin: 20px 0;
}

.navigation ul li a {
    color: #F3C512;
    text-decoration: none;
    font-weight: bold;
}

.navigation ul li a:hover {
    text-decoration: underline;
}

/* Sliding effect when class is toggled */
.navigation.navigation-open {
    left: 0; /* Slide into view */
}

/* Close Button */
.close-icon {
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #F3C512;
}

.close-icon:hover {
    color: #d4a20a;
}

/* Content Section */
.content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto auto 3.5%;
    padding-bottom: 70%;
    
}

.box h2 {
    font-size: 2em;
    color: #F3C512;
}

.box p {
    font-size: 1.1em;
    margin-bottom: 1em;
    line-height: 1.6;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 10px;
}

@media (max-width: 883px) {
    .search-bar input[type="text"] {
        width: 100%;
        margin-left: -4px;
        width: 58%;
    }
    
    .logo {
        margin-left: auto;
        margin-right: 20px;
    }
    
    .logo img {
        height: 3.5em;
        width: auto;
    }
    .search-bar {
        margin-left: -4px;
    }
    .search-bar button {
        padding: 9px 9px;
    }
    .Icon {
        margin-left: -10px;
      }
    
    .content {
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        padding-bottom: 70%;
        
    }
    .box{
        background-color: white;
        padding: 20px;
        border: 1px solid #FFF7D7;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 400px;
        /* justify-self: center; */
    }
    .box h2 {
        font-size: 2em;
        color: #F3C512;
    }
    
    .box p {
        font-size: 1.1em;
        margin-bottom: 1em;
        line-height: 1.6;
        font-weight: 500;
    }
}

