/* General Reset for Header */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;

    background: url('../images/11.jpg') no-repeat center center; 
    background-size: cover; /* Dark green background */

    height: 70px; /* Fixed height for larger screens */
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
}

/* Burger Menu Icon */
.menu-icon {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.menu-icon i {
    font-size: 24px;
}

.menu-icon:hover {
    transform: scale(1.1); /* Slight hover effect */
}

/* Burger Menu */
.burger-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;

    background: url('../images/11.jpg') no-repeat center center; 
    background-size: cover;

    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: left 0.3s ease;
    padding: 20px;
}

.burger-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.burger-menu ul li {
    margin-bottom: 15px;
}

.burger-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.burger-menu ul li a:hover {
    color: #bac11b; /* Bright orange hover effect */
}

.burger-menu.open {
    left: 0;
}

/* Burger Menu Overlay */
.burger-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.burger-menu-overlay.open {
    display: block;
    opacity: 1;
}

/* Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.logo {
    width: 250px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

.logo-button {
    display: inline-block; /* Make it clickable */
}

/* Search Bar */
.search-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    max-width: 600px;
}

.search-bar {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 20px 0 0 20px;
    font-size: 14px;
}

.search-icon {
    background-color: #bac11b;
    border: none;
    border-radius: 0 20px 20px 0;
    padding: 8px 15px;
    color: white;
    cursor: pointer;
}

/* Icons (Account and Cart) */
.icons-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.icons-container a {
    text-decoration: none;
}
.icons-container i {
    vertical-align: middle;
}
.icons-container .signout-button {
    background-color: #000 !important; /* Bootstrap danger red */
    color: #fff !important;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.icons-container .signout-button:hover {
    background-color: #c9302c !important; /* Darker red on hover */
}
.account-icon,
.cart-icon {
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.account-icon:hover,
.cart-icon:hover {
    color: #bac11b;
}

.account-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.signout-button {
    padding: 8px 16px;
    border: none;
    background-color: #f05454;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signout-button:hover {
    background-color: #d04343;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    /* Let the header expand to fit content on smaller screens */
    header {
        flex-direction: column;
        height: auto; 
        padding: 10px;
    }

    .icons-container {
        margin-top: 10px;
    }

    .burger-menu {
        width: 200px; /* Slightly narrower for tablets and below */
    }

    .burger-menu ul li a {
        font-size: 16px;
    }

    .menu-icon {
        font-size: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Optional: Further refine for very small screens */
@media (max-width: 480px) {
    /* Adjust header layout */
    header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 10px;
    }

    /* Position burger menu on the left */
    .menu-icon {
        position: absolute;
        top: 10px;
        left: 10px;
    }

    /* Center the logo */
    .logo-container {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 10px 0;
    }

    .logo {
        width: 200px;
    }

    /* Place icons on the right */
    .icons-container {
        position: absolute;
        top: 10px;
        right: 10px;
        display: flex;
        gap: 10px;
    }

    /* Place search bar below everything */
    .search-container {
        margin: 15px 0;
        width: 90%; /* Make it responsive */
    }
}


/* General Button Styling */
.verify-button {
    background-color: #ff8c00; /* Bright Orange */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.verify-button:hover {
    background-color: #e67e00; /* Slightly darker orange */
    transform: scale(1.05);
}

/* Button Click Effect */
.verify-button:active {
    background-color: #cc6d00;
    transform: scale(0.95);
}

/* Disabled Button */
.verify-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Centered Container */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


