header h1 {
    margin: 0 auto;
    text-align: center;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.mission {
   
}

.mission h2 {
   
    color: white;
    font-family: Palatino, "Palatino Linotype", serif;
    font-size: clamp(1.2rem, 2vw, 2.2rem);
    line-height: 1.8;
    text-align: right;
}
.mission h3 {
    color: white;
    font-family: Palatino, "Palatino Linotype", serif;
    font-size: clamp(1rem, 1.7vw, 2rem);
    line-height: 1;
    text-align: left;
}

.contact {


}

.contact h2 {

     color:#7cd029;
    font-family: Palatino, "Palatino Linotype", serif;
    font-size: clamp(.8rem, 2vw, 1.2rem);
    line-height: 1.2;
    text-align: left;
}

/* Hide the menu by default */
#navMenu {
    display: none;
    /* Initially hidden */
    position: sticky;
    top: 75px;
    /* Adjust based on the hamburger position */
    left: 0;
    width: fit-content;
    position: fixed;
}

/* Show the menu when the "show" class is added */
#navMenu.show {
    display: block;
    /* Make it visible */
}

/* Vertical list styling */
#navMenu ul {
    list-style: none;
    /* Remove bullets */
    margin: 10px;
    padding: 0;
}

#navMenu li {
    margin: 10px 0;
    /* Spacing between items */
}

#navMenu a {
    display: block;
    /* Block-level to ensure vertical stacking */
    text-decoration: underline;
    text-align: left;
    color: white;
    font-size: 24px;
}

/* Hamburger menu styling */
.menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    /* Fixed position */
    left: 10px;
    /* Move to the left side of the screen */
    top: 20px;
    /* Adjust as needed */
    z-index: 10000;
    /* Ensure it sits on top of other elements */
}

.menu-icon div {
    background-color: white;
    height: 4px;
    margin: 3px 0;
    width: 30px;
}

header {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.box-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    /* Adjust as needed */
}

.box {
    width: 45%;
    /* Adjust width as needed */
    border: 1px solid #ccc;
    /* Optional: add a border */
    padding: 20px;
    text-align: center;
    /* Center content in the box */
    background-color: #f9f9f9;
    /* Optional: background color */
    border-radius: 8px;
    /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: shadow */
}

.box h1 {
    margin-bottom: 15px;
}

.box button {
    background-color: #3e6715;
    /* Button color */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.box button:hover {
    background-color: #7CD029;
    /* Darker blue on hover */
}

.responsive-image {
    width: 400px;
    height: 300px;
}

.image-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}



input[type="text"],
input[type="password"] {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

login-button {
    width: 100%;
    padding: 10px;
    background-color: #7DAF4B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Inventory Table */

.table-container {
    width: 100%;
}

.inventory-table,
.inventory-table thead,
.inventory-table tbody,
.inventory-table tr,
.inventory-table th,
.inventory-table td {
    display: block;
}

.inventory-table {
    width: 100%;
    background: transparent;
    border-collapse: collapse;
}

.inventory-table thead {
    display: none;
}

.inventory-table tr {
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.inventory-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 10px 0;
    text-align: left;
}

.inventory-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #333;
}

/* Picture row */

.inventory-table td:first-child {
    display: block;
    text-align: center;
}

.inventory-table td:first-child::before {
    display: none;
}

.instrument-image {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Button */

.buy-button {
    width: 100%;
    padding: 10px;
    background: #3e6715;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

.buy-button:hover {
    background: #7CD029;
}
@media (max-width: 768px) {


    .about-section {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .image-container {
        order: -1; /* Image appears above the text */
        justify-content: center;
    }

    .mission {
        justify-content: center;
        margin-right: 0 !important;
    }

    .mission h2 {
        text-align: center;
        font-size: 1.3rem;
        line-height: 1.6;
    }
    .contact h2 {
     order: 1; /* Image appears below the text */
        justify-content: center;
          text-align: center;
    }

    /* Layout */
    .sidebar {
        width: 40px;
        min-width: 40px;
    }

    .content {
        width: calc(100% - 80px);
        padding: 10px;
    }

    /* ==========================
       Inventory Cards
       ========================== */

    .inventory-table,
    .inventory-table thead,
    .inventory-table tbody,
    .inventory-table th,
    .inventory-table td,
    .inventory-table tr {
        display: block;
    }

    .inventory-table {
        width: 100%;
        font-size: 14px;
        background: transparent;
    }

    .inventory-table thead {
        display: none;
    }

    .inventory-table tr {
        background: white;
        margin-bottom: 20px;
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 10px;
    }

    .inventory-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        padding: 8px 0;
        text-align: left;
    }

    .inventory-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #333;
        margin-right: 10px;
    }

    .instrument-image {
        width: 100px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .buy-button {
        background-color: #3e6715;
        color: white;
        border: none;
        width: 100%;
        max-width: 150px;
        padding: 10px;
        border-radius: 25px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
    }

    .buy-button:hover {
        background-color: #7CD029;
    }

    .delete-button {
        background-color: #c62828;
        color: white;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        font-weight: bold;
    }

    .delete-button:hover {
        background-color: #e53935;
    }

    /* Boxes */

    .box-container {
        gap: 15px;
    }

    .box {
        width: 45%;
    }

    .box img {
        width: 100%;
        max-width: 140px;
    }

    .box h1 {
        font-size: 1.2rem;
    }

    /* Calendar */

    .calendar-box {
        background: white;
        border-radius: 10px;
        padding: 15px;
        margin-top: 20px;
    }

    .calendar-box iframe {
        width: 100%;
        min-height: 700px;
        border: none;
    }

    /* Cart Icon */

    .cart-icon {
        position: absolute;
        right: 2%;
        z-index: 1000;
    }
}