/* Fullscreen menu overlay */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background-color: #faf9f6;
    color: #0f0f0f;
    display: none;
    z-index: 1050;
    padding: 2.5rem 3rem;
    /* subtle vertical grid lines */
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px
    );
    background-size: 80px 100%;
}

/* activated from JS by toggling .open */
.fullscreen-menu.open {
    display: block;
}

/* Close button (top-right) */
.fullscreen-menu-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: transparent;
    color: #0f0f0f;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Left column: big menu */
.fullscreen-menu-nav {
    text-align: left;
}

.fullscreen-menu-link {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #0f0f0f;
    font-size: clamp(1.9rem, 2.6vw, 2.8rem);
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.fullscreen-menu-link:hover {
    color: #111111;
}

/* Right column: contact block */
.fullscreen-menu-contact {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #0f0f0f;
}

.fullscreen-menu-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.fullscreen-menu-contact-title {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.fullscreen-menu-contact-email a {
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
}

.fullscreen-menu-contact-email a:hover {
    text-decoration: underline;
}

/* Hide header & footer visually when menu is open (already used) */
body.menu-open .luna-header,
body.menu-open .luna-footer {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* Mobile tweaks */
@media (max-width: 991.98px) {
    .fullscreen-menu {
        padding: 2rem 1.5rem;
    }

    .fullscreen-menu-contact {
        margin-top: 2rem;
    }
}
