
header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0px;
}

/* Header styles */
.site-header {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    height: 30px;
}

/* Left section styles */
.left-section {
    display: flex;
    gap: 20px;
}

/* General styles for the button */
.menu-button {
    display: inline-block; /* Ensure it's inline for placement */
    width: 30px; /* Width of the button */
    height: 24px; /* Height to accommodate the three lines */
    cursor: pointer; /* Change cursor to pointer on hover */
    padding: 9px 0 0 0;
}

/* Styles for the lines */
.menu-button div {
    background-color: black; /* Line color */
    height: 2px; /* Thickness of the lines */
    margin: 4px 0; /* Space between lines */
    width: 100%; /* Full width of the button */
    border-radius: 2px; /* Slightly rounded corners (optional) */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

/* Hover effect */
.menu-button:hover div {
    background-color: gray; /* Change color on hover */
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 0 0 0;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: top;
    justify-content: center;
}

.search-icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border: 2px solid #000;
    border-radius: 50%;
}

.line {
    position: absolute;
    bottom: -4px;
    right: 4px;
    width: 2px;
    height: 8px;
    background: #000;
    transform: rotate(-45deg);
    transform-origin: top center;
}

/* Hover state */
.search-button:hover .circle {
    border-color: gray;
}

.search-button:hover .line {
    background-color: gray;
}

/* Focus state for accessibility */
.search-button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Optional: Add transition for smooth hover effect */
.search-icon .circle,
.search-icon .line {
    transition: all 0.2s ease;
}

/* Center section styles */
.center-section {
    flex-grow: 1;
    text-align: center;
}

.logo {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.logo:hover {
    color: gray;
    transition: color 0.2s ease; /* Optional: adds smooth transition effect */
}

/* Right section styles */
.right-section {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Button styles */
.icon-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

.subscribe-button {
    background-color: #c00;
    color: white;
    border: none;
    padding: 8px 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.subscribe-button:hover {
    background-color: #a00;
}