/*Header*/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    background: transparent;
    border-bottom: 1px solid #ecebe942;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    width: 90%;
    padding: 10px 0;
    border: 1px solid #ecebe942;
    border-radius: 6px;
    transform: translate(5%, 15px);
    background: #f0f8ff0d;
    backdrop-filter: blur(10px);
}

.header-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 70px;
}

.main-header.scrolled .logo {
    width: 50px;
}

.main-nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", serif;
}

.main-nav a {
    color: #edebff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.main-nav li:last-child a {
    border: 1px solid #cdb556;
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.main-nav li:last-child a:hover {
    background-color: #cdb556;
    color: #06102d;
}

.main-nav a:hover {
    color: #b29e6a;
}

@media (max-width: 768px) {
    .main-header{
        padding: 10px 0 !important;
        border-bottom: 0 !important;
    }
    .hero_section .content{
        margin-top: 100px;
    }
    .header-container {
        flex-direction: column;
        gap: 0rem;
    }
    .main-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}