/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
}

/* Custom Sidebar Styles */
.custom-sidebar {
    width: 15% !important;
    background-color: #222 !important;
    color: #fff !important;
    min-height: 100vh !important;
    padding: 20px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
}

.custom-sidebar h3 {
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

.custom-sidebar ul {
    list-style: none !important;
    margin-top: 20px !important;
    padding: 0 !important;
}

.custom-sidebar ul li {
    margin: 20px 0 !important;
}

.custom-sidebar ul li a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    display: block !important;
    padding: 10px !important;
    transition: color 0.3s !important;
}

.custom-sidebar ul li a:hover {
    color: red !important;
}



/* Content Styles */
.content {
    flex: 1;
    margin-left: 15%;
    padding: 20px;
    background-color: #f8f8f8;
    overflow-x: hidden;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    border-top: 8px solid red;
    margin-bottom: 20px;
    position: sticky;
    z-index: 100;
    margin-top: -20px;
    margin-left: -20px;
    margin-right: -20px;
}


.logo {
    height: 60px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    padding: 5px 10px;
    border-radius: 20px;
}

.search-bar .icon {
    height: 20px;
    margin-right: 10px;
}

.search-bar input {
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
}

.user-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-options a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
}

.user-options .icon {
    height: 24px;
    cursor: pointer;
}


/* Contact Header */
.contact-header {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.info-section {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    background-size: cover;
    margin: -20px; 
    margin-top: 60px;
}

.important-numbers, .opening-hours {
    width: 45%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.important-numbers h4, .opening-hours h4 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

.important-numbers ul, .opening-hours ul {
    list-style: none;
    padding: 0;
}

.important-numbers li, .opening-hours li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.important-numbers li span, .opening-hours li span {
    color: #f1f1f1;
    font-weight: bold;
}

.contact-section {
    background-size: cover;
    padding: 0;
    margin: -20px;
}

.contact-section .container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
}

.contact-section h2 .text-danger {
    color: red;
}



/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background: #eaeaea;
    border-top: 1px solid #ddd;
}