@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montez&family=Pacifico&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Story+Script&display=swap');



* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Playfair;

}

main {
    padding-top: 85px;
}

nav {
    width: 100%;
    min-height: 85px;
    background-color: rgba(248, 243, 239, 0.95);

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.nav_content {
    height: 100%;
    width: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
}

.palour_name {
    color: #333232;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-family: Playfair;
    font-weight: 600;
}

.nav_anchors {
    display: flex;
    gap: clamp(1rem, 3vw, 4rem);
    align-items: center;
}

.hamburger {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    margin-right: 1rem;
    width: 1.6rem;
    height: 1.2rem;
    /* padding-right: 1rem; */
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #565555;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media screen and (max-width:650px) {
    .nav_content {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav_anchors {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        background-color: rgba(248, 243, 239, 0.98);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
        z-index: 999;
    }

    .nav_anchors.active {
        display: flex;
    }

    .appointment {
        display: none;
    }
}

.anchors {
    text-decoration: none;
    /* gap: 20px; */
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #565555;
    font-weight: bold;
    transition: all 0.3s linear;
}

.anchors:hover {
    color: #cb987e;

}

.appointment {
    height: 2.5em;
    width: 8.5em;
    border: 1px solid #cb987e;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right: 2.5em; */
    transition: all 0.3s linear;
}

.appointment_text {
    text-decoration: none;
    color: #cb987e;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s linear;

}

.appointment:hover {
    background-color: #cb987e;
}

.appointment:hover .appointment_text {
    color: #f9f3f3;

}