body {
    margin: 0;
    background-color: #090712;
    overflow-x: hidden;
    font-family: "Fira Sans", sans-serif;
}

.header {
    position: fixed;
    top: 0%;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    z-index: 1000;
    font-family: "Antonio", sans-serif;
    font-size: 20px;
    background-image: url("bg.png");
    background-size: cover;
    background-position: top;
}


.title {
    margin-left: 50px;
    text-decoration: none;
    font-weight: bolder;
    color: white;
    font-family: "Tektur", sans-serif;
}

.header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-right: 35px;
}

.header li {
    margin: 5px;
}

.header li a {
    display: inline-block;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 5px 18px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.header li a:hover {
    font-weight: bold;
    color: #9356A0;
}

.header-nav-search {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.header-search {
    margin-right: 20px;
    position: relative;
    z-index: 1001;
}

.header-search input[type="search"] {
    width: 200px;
    height: 30px;
    padding: 10px 30px 10px 10px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    background-color: #DCCAE9;
    font-family: sans-serif;
    -webkit-appearance: none;
}

.header-search input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.header-search input[type="search"]::-webkit-search-decoration,
.header-search input[type="search"]::-webkit-search-cancel-button,
.header-search input[type="search"]::-webkit-search-results-button,
.header-search input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    display: none;
}

.header-search input[type="search"]::-ms-clear,
.header-search input[type="search"]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.header-search .search-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #2C1B47;
    cursor: pointer;
}

.subheader {
    font-family: "Antonio", sans-serif;
    font-size: 14px;
    position: fixed;
    margin-top: 80px;
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #B8ACC7;
    z-index: 999;
    overflow: hidden;
}

.subheader ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
}

.subheader ul li {
    text-align: center;
    white-space: nowrap;
    width: 100%;
}

.subheader ul li a {
    display: block;
    color: black;
    padding: 8px 30px;
    text-decoration: none;
    height: 100%;
    line-height: 19px;
    transition: all 0.3s ease-in-out;
}

.subheader ul li a:hover {
    background-color: #090712;
    color: white;
}

.subheader ul li.focus {
    background-color: #090712;
    height: 35px;
}

.subheader ul li.focus a {
    color: white;
}

.search-results {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    margin-top: 5px;
}

.search-result-item {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
    background-color: #fff;
}

.search-result-item:hover {
    background-color: #f5f5f5;
    transform: translateX(5px);
}

.search-result-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #2C1B47;
    font-size: 16px;
}

.search-result-content {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 5px;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}