/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.headerContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px;
    background-color: #fff;
    color: #000;
}

.desktop-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li {
    display: inline;
    margin-right: 15px;
}

.desktop-nav ul li a {
    font-size:18px;
    color: #000;
    padding: 10px 15px; 
    text-decoration: none;
}

.desktop-nav ul li a:hover {
    font-size:18px;
    background-color: #f46424; /* Hover background color */
    color: white; /* Hover text color */
}

.mobile-nav-toggle {
    display: none;
}

/* Sticky Header */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Adjust z-index as needed */
    background-color: #fff;
    transition: top 0.3s;
    color: #000;
}

/* Main content container */
.main-content {
    padding-top: 100px; /* Adjust based on the height of your sticky header */
}

/* Side Drawer */
.side-drawer {
    position: fixed;
    top: 0;
    right: -250px; /* Drawer starts off screen on the right */
    height: 100%;
    width: 250px;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: 0.3s;
    z-index: 999; /* Ensure drawer is above other content */
    padding-top: 60px; /* Adjust based on the height of your sticky header */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
}

.drawer-divider {
    margin: 0;
    border-top: 1px solid #ccc; /* Divider style */
    background-color: #ccc; /* Match background color with text color */
}

.side-drawer.open {
    left: 0; /* Slide drawer into view from the right */
}

.side-drawer-header {
    height:140px;
    display: flex;
    justify-content: space-between; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    padding: 20px; /* Adjust padding as needed */
    background-color: #fff;
    color: #fff;
}

.side-drawer-header img {
    max-width: 100%;
    height: auto;
}

.mobile-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    display: block;
    padding: 10px; /* Padding around anchor text */
}

.mobile-nav ul li a:hover {
    background-color: #f46424;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .headerContainer {
        justify-content: flex-start; /* Keeps logo on the left */
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
        padding: 10px 20px;
        cursor: pointer;
        background-color: #fff;
        color: #000;
        margin-left: auto;
    }
    
    .side-drawer {
        position: fixed;
        top: 0;
        right: -250px; /* Drawer starts off screen on the right */
        height: 100%;
        width: 250px;
        background-color: #ffffff;
        overflow-x: hidden;
        transition: 0.3s;
        padding-top: 60px; /* Adjust based on the height of your sticky header */
    }
    
    .side-drawer.open {
        left: 0; /* Slide drawer into view from the right */
    }
    
    .side-drawer-header {
        height:140px;
        display: flex;
        justify-content: center; /* Center content horizontally */
        align-items: center; /* Center content vertically */
        padding: 20px; /* Adjust padding as needed */
        background-color: #fff;
        color: white;
    }
    
    .side-drawer-header img {
        max-width: 100%;
        height: auto;
    }
    
    .mobile-nav ul {
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav ul li {
        padding: 15px 20px;
        border-bottom: 1px solid #ccc;
    }
    
    .mobile-nav ul li a {
        text-decoration: none;
        color: #000;
        transition: background-color 0.3s, color 0.3s;
        display: block;
        padding: 10px; /* Padding around anchor text */
    }
    
    .mobile-nav ul li a:hover {
        background-color: #f46424;
        color: white;
    }
}
