@font-face {
    font-family: 'offerings';
    src: url('OpenSans-VariableFont_wdth,wght.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Abiggail';
    src: url('noyagi.demo.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.header {
    position: fixed;
    font-family: 'offerings', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    background-color: #dfdfde;
    z-index: 1000;
    padding: 0 40px;
    border-bottom: none;
    box-shadow: none;
    transition: top 0.6s, background-color 0.3s ease-in-out;
}

.artist-name {
    color: #65737e;
    font-family: 'Abiggail', sans-serif;
    font-size: 1.6em;
    white-space: nowrap;
    padding-left: 40px;
    letter-spacing: 0.05em;
    transition: font-size 0.3s ease-in-out, padding-left 0.3s ease-in-out;
}

.navbar {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    margin-left: 20px;
    padding-right: 40px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.navbar ul li {
    padding: 0 10px;
}

.navbar a {
    text-decoration: none;
    color: #65737e;
    font-size: 1em;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #c0c0c0;
}

@media (max-width: 1200px) {
    .navbar {
        display: none;
    }

    .menu-icon {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
}

.menu-icon {
    display: none;
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
    margin-right: 40px;
    transition: opacity 0.3s ease-in-out, margin-right 0.3s ease-in-out;
}

.menu-icon div {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #65737e;
    transition: transform 0.4s ease, top 0.4s ease, opacity 0.4s ease;
}

.menu-icon div:nth-child(1) {
    top: 4px;
}

.menu-icon div:nth-child(2) {
    top: 10px;
}

.menu-icon div:nth-child(3) {
    top: 16px;
}

.menu-icon.open div:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-icon.open div:nth-child(2) {
    opacity: 0;
}

.menu-icon.open div:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

@media (max-width: 1200px) {
    .menu-icon {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 767px) {
    .artist-name {
        font-size: 1.4em;
        padding-left: 40px;
        text-align: center;
    }

    .menu-icon {
        margin-right: 20px;
    }

    .navbar {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 400px) {
    .menu-icon {
        display: block;
        margin-right: 20px;
    }

    .header {
        justify-content: space-between;
        padding: 0 20px;
    }

    .artist-name {
        flex: 1;
        text-align: center;
        padding-left: 0;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: right;
    animation: fadeIn 0.5s ease-in-out;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin: 40px 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1.8em;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: #aaaaaa;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
