/* Navigation Bar Container */
.main-navbar {
    width: 100%;
    max-width: 1728px;
    height: 171px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    background: rgba(245, 240, 230, 0.22);    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 100;
}

/* Logo and Brand Section */
.logo-text-container {
    width: 573px;
    height: 113px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 132px;
    height: 113px;
    object-fit: contain;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: #221E1D;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Hamburger Menu Icon */
.icon {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: #221E1D;
}

/* Fullscreen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 1728px;
    height: 100vh;
    background: #F5F0E6;
    backdrop-filter: blur(9.4px);
    -webkit-backdrop-filter: blur(9.4px);
    z-index: 999;
    transition: right 0.4s ease;
}

.menu-overlay.open {
    right: 0;
}

/* Close Button Styling */
.close-btn {
    position: absolute;
    top: 30px;
    right: 80px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.close-btn .bar:nth-child(1) {
    position: absolute;
    transform: rotate(45deg);
}

.close-btn .bar:nth-child(2) {
    position: absolute;
    transform: rotate(-45deg);
}

/* Menu Navigation Content */
.menu-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 60vh; /* Adjust height for spacing */
}

.menu-item {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    color: #221E1D;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.menu-item:hover {
    opacity: 0.6;
}




@media (max-width: 1728px) {

    .main-navbar {
        height: 120px !important;
        padding: 20px 60px !important;
    }

    .logo-img {
        width: 90px !important;
        height: 90px !important;
    }

    .brand-name {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {

    .main-navbar {
        height: 80px !important;
        padding: 16px 32px !important;
    }

    .logo-text-container {
        width: auto !important;
        height: auto !important;
        gap: 8px !important;
    }

    .logo-img {
        width: 55px !important;
        height: 55px !important;
    }

    .brand-name {
        font-size: 20px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {

    .main-navbar {
        height: 70px !important;
        padding: 12px 24px !important;
    }

    .logo-img {
        width: 45px !important;
        height: 45px !important;
    }

    .brand-name {
        font-size: 16px !important;
    }

    .icon {
        width: 20px !important;
        height: 14px !important;
    }
}

@media (max-width: 380px) {

    .main-navbar {
        height: 65px !important;
        padding: 10px 16px !important;
    }

    .logo-img {
        width: 40px !important;
        height: 40px !important;
    }

    .brand-name {
        font-size: 14px !important;
    }
}