.main-header {
    background: #E15050;
    color: #ffffff;
    padding: 10px 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.header-logo h1 {
    font-style: italic;
    line-height: 0.9;
    margin: 0;
    font-size: 32px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-text {
    font-weight: bold;
    font-size: 18px;
}

.header-login-btn {
    background-color: #ffffff;
    border: 1px solid #B2B2B2;
    color: #E15050;
    padding: 10px 30px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

.navigationHeader {
    background: #ffffff;
    display: flex;
    width: 100%;
    border-top: 3px solid black;
    border-bottom: 3px solid black;
    box-sizing: border-box;
}

.navChild {
    flex: 1;
    border-left: 3px solid black;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size: 20px;
}

.navChild:first-child {
    border-left: none;
}

.navChild a {
    color: #E15050;
    text-decoration: none;
    display: block;
    width: 100%;
}

.navChild a:hover {
    text-decoration: underline;
}

a:link {
  color: #E15050;
}

.aboutusHeader {
    border: 3px solid black;
    text-align: center;
    width: 500px;
    height: 150px;
    float: left;
}
.eventHeader {
    border: 3px solid black;
    text-align: center;
    width: 500px;
    height: 150px;
    float: right;
}

button {
    background-color: #ffffff;
    border: 2PX solid #B2B2B2;
    color: #E15050;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

body {
    font-family: "Segoe UI", Roboto, sans-serif;
    margin: 0;
    background: #ffffff;
    color: #E15050;
    text-align: left;
}

.container {
    width: 100%;
    min-height: 100vh;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.eventHolder {
    margin-top: 10px;
    border: 3px solid black;
    width: 450px;
    height: 350px;
    margin-left: 960px;
    text-align: center;
}

.searchEvent {
    margin-top: 10px;
    border: 3px solid black;
    width: 450px;
    height: 350px;
    margin-left: 960px;
    text-align: center;
}

footer {
    background: linear-gradient(120deg, #E15050, #E15050);
    color: #ffffff;
    padding: 60px 20px;
    text-align: left;
}

/* SEARCH COMPONENT (From Search-Function.HTML) */
.search-container {
    width: 80%;
    margin: 0 auto;
    position: relative;
    color: black;
}

.search-box {
    width: 100%;
    background: white;
    border: 1px solid black;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
}

.search-icon {
    font-size: 22px;
    cursor: pointer;
}

.results-box {
    position: absolute;
    width: 100%;
    background: white;
    margin-top: 2px;
    border: 1px solid black;
    overflow: hidden;
    display: none;
    z-index: 1000;
}

.result-item {
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.result-item:hover {
    background: #f1f1f1;
}