/* General Header Styling */
.header {
    background-color: #000;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 153px;
}

/* Container to Center Header Content */
.header-container {
    width: 60%; /* Adjust this width as needed */
    max-width: 1200px; /* Optional max width */
    margin: 0 auto; /* Center it horizontally */
}

/* Top Row */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    font-size: 0.9rem;
    width: 100%; /* Ensure the top row spans the entire width of the container */
}

.header-top i {
    font-size: 1.2rem; /* Adjust size as needed */
    color: #fff; /* White color for the icons */
    padding-right: 5px;
}

/* Address Section */
.header-address {
    display: flex;
    align-items: center;
}

/* Phone Section */
.header-phone {
    display: flex;
    align-items: center;
}

/* Bottom Row (Panel) */
.header-panel {
    display: flex;
    flex-direction: row;
    align-items: center; /* Vertically center logo */
    padding: 15px;
    width: 100%;
}

/* Logo */
.header-logo {
    height: 60%;
    width: auto;
    margin-right: 20px;
    z-index: 2;
}

/* Right Section */
.header-right {
    display: flex;
    flex-direction: column; /* Stack Facebook link and title vertically */
    align-items: flex-end; /* Align both elements to the right */
    flex-grow: 1; /* Push the right section to take up available space */
}

/* Facebook Link Styling */
.header-facebook {
    margin-bottom: 5px; /* Add space between the Facebook link and title */
    transform: translateY(-30px);
}

.header-facebook a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.header-facebook a:hover {
    color: #3b5998; /* Facebook blue on hover */
}

.header-facebook i {
    margin-right: 5px;
    font-size: 1.2rem; /* Icon size */
}

/* Title */
.header-title {
    font-size: 1.8rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 15px;
}
