/* Header CSS */
header.main-header {
    background: rgba(2, 2, 3, 0.75);
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 10;
}

header.main-header .wrap {
    display: flex;
    justify-content: space-between;
}

header.main-header a {
    color: var(--white);
    text-decoration: none;
    transition: ease 0.6s;
}

header.main-header a:hover {
    color: #fe3d67;
}

header.main-header a.button:hover {
    color: var(--white);
}


button.main-menu svg {
    width: 100%;
    height: 100%;
}

.logo-side a {
    height: 100%;
    width: 100%;
    display: flex;
    padding: 2px 0;
}

button.main-menu {
    background: 0 0;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    flex-shrink: 0;
    padding: 0;
}

.menu-side {
    display: flex;
    flex-direction: row;
    gap: 40px;
    text-align: center;
    align-items: center;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 99;
    width: 100%;
    background: rgba(2, 2, 3, 0.95);
    transform: translateX(100%);
}

.menu-overlay.active {
    transform: translateX(0);
    display: block;
    animation: slideIn 500ms ease-in-out;
}

.menu-overlay.inactive {
    animation: slideOut 500ms ease-in-out;
    transform: translateX(100%);
}

div#mainMenu .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    align-items: center;
    height: 100%;
    position: relative;
}

div#mainMenu {
    height: 100%;
}

.menu-main-items a {
    font-family: 'Afacad', sans-serif;
    font-size: clamp(28px, 4vw, 80px);
    line-height: clamp(28px, 4vw, 80px);
    font-weight: 500;
    letter-spacing: 5.6px;
    text-transform: uppercase;
}

.menu-main-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    width: calc(100% - 40px);
}

div#mainMenu .wrap:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 80%;
    width: 2px;
    background: linear-gradient(92deg, #988245 0%, #F7EED4 15.74%, #E5C66F 31.48%, #FCF9F1 49.19%, #E5C66F 66.9%, #F7EED4 82.64%, #988245 98.38%);
    z-index: 100;
}

.menu-side-items a {
    font-family: 'Afacad', sans-serif;
    font-size: clamp(20px, 2.4vw, 36px);
    font-weight: 500;
    letter-spacing: 2.52px;
    text-transform: uppercase;
}

.menu-side-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    width: calc(100% - 40px);
}

.menu-close-btn {
    position: absolute;
    top: 20px;
    right: 0;
    color: var(--white);
    font-weight: 500;
    z-index: 101;
    cursor: pointer;
}

.menu-close-btn svg {
    fill: var(--white);
}

.social-media-header {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-media-header a {
    fill: var(--white);
    height: 24px;
    width: 24px;
}

.social-media-header a svg {
    height: 24px;
    width: 24px;
}

div#mainMenu a.footer-contact {
    background: linear-gradient(92deg, #988245 0%, #F7EED4 15.74%, #E5C66F 31.48%, #FCF9F1 49.19%, #E5C66F 66.9%, #F7EED4 82.64%, #988245 98.38%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(16px, 2vw, 22px);
    text-transform: none;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slideOut {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}

@media (max-width: 900px) {
    div#mainMenu .wrap {
        grid-template-columns: 1fr;
        height: auto;
        margin: auto;
        max-height: 80vh;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    div#mainMenu .wrap:after {
        display: none;
    }
    .menu-main-items {
        margin-top: 50px;
    }
}

@media (max-width: 750px) {
    .menu-side a:nth-of-type(1), 
    .menu-side a:nth-of-type(2) {
        display: none!important;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    padding: 0 40px 40px;
    border-radius: 6px;
    border: 2px solid #862C95;
    background: #000;
    max-width: 320px;
    width: calc(80vw - 80px);
    position: relative;
    overflow-y: scroll;
    max-height: 80vh;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.modal-title {
  font-size: clamp(24px, 4vw, 36px);
  line-height: clamp(24px, 4vw, 36px);
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.header-venues {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

header.main-header a.button:hover::before,
header.main-header button.button:hover::before {
    opacity: 1;
}

header.main-header a.button:hover,
header.main-header button.button:hover {
    color: var(--white); 
    background: transparent;
}

.header-venues a.button {
  font-size: 14px;
  letter-spacing: 0;
  text-align: center;
}

@media (max-width: 960px) {
    header.main-header div#brochure_download {
        display: none;
    }
}

@media (max-width:750px) {
    .header-venues {
        grid-template-columns: 1fr;
    }
}