/* Fonts handled in style.css */


/* HEADER STYLES */

.lit-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.lit-footer,
.lit-footer * {
    font-size: 0.875rem;
    font-weight: 500;
}

.lit-header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

.lit-header-content {
    width: 1080px;
    max-width: 1480px;
    margin: 0 ;
    padding: 1.5rem 1.5rem;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(190, 192, 192, 0.05);
    box-shadow: var(--shadow-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.lit-logo {
    width: 3rem;
    height: 3rem;
    transform: scale(2);
}

.lit-logo svg {
    width: 100%;
    height: 100%;
}

.lit-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
}

/* Desktop Menu */
.lit-nav-desktop {
    display: none;
}

.lit-desktop-menu,
.lit-menu-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lit-desktop-menu li {
    margin: 0;
}

.lit-desktop-menu a {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-light-gray);
    transition: color 0.2s;
    font-family: 'Dax-Regular', Arial, Helvetica, sans-serif;
}

.lit-desktop-menu a:hover {
    color: var(--color-primary);
}

/* Contact Button Desktop */
.lit-contact-btn-wrapper {
    display: none;
}

.lit-contact-btn {
    font-size: 0.75rem;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-neon-btn);
    text-transform: uppercase;
    font-weight: 600;
    height: 2.25rem;
    width: 7rem;
    border-radius: 9999px;
    color: #000;
    transition: opacity 0.2s;
}

.lit-contact-btn:hover {
    opacity: 0.9;
}

/* Mobile Menu Button */
.lit-menu-btn {
    display: none;
    flex-wrap: wrap;
    gap: 0.125rem 0.375rem;
    height: 1.5rem;
    width: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.lit-menu-dot {
    margin-top: 1rem;
    height: 0.375rem;
    width: 0.375rem;
    border-radius: 50%;
    background: var(--color-primary);
}

/* Mobile Menu Overlay - Outer Container */
.lit-menu-cover {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: -100%;
    top: auto;
    height: calc(100vh - 130px);
    padding: 1rem;
    background: transparent;
    pointer-events: none;
    z-index: 2000;
    overflow: hidden;
    visibility: hidden;
    transition: none;
    opacity: 0;
}

.lit-menu-cover.active {
    visibility: visible;
    pointer-events: auto;
}

.lit-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Ensure any menu list inside the overlay is vertical */
.lit-menu .lit-mobile-menu,
.lit-menu .lit-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 2rem;
}

.lit-mobile-menu {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    gap: 1.2rem;
}

.lit-mobile-menu li {
    margin: 0;
    width: 100%;
    text-align: center;
}

.lit-mobile-menu a {
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-light-gray);
    opacity: 0;
    transition: opacity 0.3s, color 0.2s;
    font-family: 'Dax-Regular', Arial, Helvetica, sans-serif;
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    margin: 0 auto;
}

.lit-menu-cover.active .lit-mobile-menu a {
    opacity: 1;
}

.lit-mobile-menu a:hover {
    color: var(--color-primary);
}

.lit-menu-contact-btn {
    font-size: 0.75rem;
    background: linear-gradient(120deg, var(--color-primary), #00deb9);
    cursor: pointer;
    box-shadow: var(--shadow-neon-btn);
    text-transform: uppercase;
    font-weight: 600;
    height: 2.25rem;
    width: 7rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    opacity: 0;
    transition: opacity 0.3s;
}

.lit-menu-cover.active .lit-menu-contact-btn {
    opacity: 1;
}

.lit-header {
    margin-top: 2rem;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .lit-header {
        padding: 2rem 2.5rem;
    }

    .lit-header-container {
        grid-template-columns: repeat(8, 1fr);

    }

    .lit-header-content {
        grid-column: span 6;
        max-width: 1200px;
    }

    .lit-logo {
        width: 2.5rem;
        height: 2.5rem;
    }

    .lit-nav-desktop {
        display: flex;
    }

    .lit-menu-btn {
        display: none;
    }

    .lit-contact-btn-wrapper {
        display: flex;
        align-items: center;
    }

    .lit-menu-cover {
        display: none;
    }
}

/* FOOTER STYLES   */
   

.lit-footer {
    background: linear-gradient(to bottom, black 40%, rgba(255, 255, 255, 0.05) 50%, black 60%);
    color: white;
    width: 100%;
}

.lit-footer .container {
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.lit-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    min-height: 0;
    width: 100%;
}

/* Footer Logo */
.lit-footer-logo {
    width: 5rem;
    height: 5rem;
    overflow: visible;
    display: flex;
    align-items: flex-start;
}

.lit-footer-logo svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.lit-footer-logo text {
    fill: white !important;
    opacity: 1 !important;
    font-size: 300px !important;
}

/* Social Media */
.lit-footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lit-social-link {
    padding: 0.5rem;
    border-radius: 9999px;
    background: #27272a;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lit-social-link:hover {
    background: white;
    color: black;
}

.lit-social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer Column */
.lit-footer-heading {
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    text-shadow: 0 0 1px #fff, 0 0 1px #fff;
}

.lit-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lit-footer-links li {
    margin-bottom: 0.5rem;
}

.lit-footer-links a {
    transition: color 0.2s;
}

.lit-footer-links a:hover {
    color: white;
}

.lit-footer-text {
    line-height: 1.75;
    margin: 0;
}

.lit-footer-text a {
    transition: text-decoration 0.2s;
}

.lit-footer-text a:hover {
    text-decoration: underline;
}

.lit-footer,
.lit-footer * {
    font-size: 1rem;
    font-weight: 500;
}

.lit-footer-logo,
.lit-footer-logo * {
    font-size: inherit !important;
}

.lit-footer-links li {
    margin-bottom: 0.4rem;
}

@media (max-width: 767px) {
    .lit-footer .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Copyright */
.lit-footer-bottom {
    border-top: 1px solid var(--color-primary);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    color: white;
    font-size: 0.875rem;
}

.lit-footer-text {
    line-height: 1.6em;
    margin: 0;
    letter-spacing: 0;
}

/* Desktop Footer */
@media (min-width: 768px) {
    .lit-footer-grid {
        grid-template-columns: repeat(4, 1fr);
        min-height: 0;
        padding: 1rem ;
    }
}

@media (min-width: 1600px) {
    .lit-footer-grid {
        grid-template-columns: repeat(4, 1fr);
        min-height: 0;
        padding: 0 ;
    }
}

/* MAIN CONTENT   */

.lit-main-content {
    padding-top: 20px;
    /* Header height */
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1023px) {

    body .lit-nav-desktop,
    body .lit-contact-btn-wrapper,
    #lit-header .lit-nav-desktop,
    #lit-header .lit-contact-btn-wrapper {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body .lit-header-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        display: block !important;
        position: relative;
        z-index: 2002 !important;
    }

    body .lit-header-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.5rem !important;
        margin: 0 !important;
        background: rgba(0, 0, 0, 0.1) !important;
        border: none !important;
    }

    /* Logo - Left */
    body .lit-logo {
        display: block !important;
        width: 2.5rem !important;
        height: 3.5rem !important;
        margin: 0.3rem !important;
        padding: 0 !important;
        padding-bottom: 1rem !important;
        transform: scale(1) !important;
    }

    body .lit-logo a {
        display: block !important;
        width: 150% !important;
        height: 150% !important;
        
    }

    /* 4-Dot Button - Right */
    body .lit-menu-btn {
        display: grid !important;
        grid-template-columns: repeat(2, 8px) !important;
        grid-template-rows: repeat(2, 8px) !important;
        gap: 4px !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        border: none !important;
        padding: 0.5rem 1rem 1.5rem 0 !important;
        cursor: pointer !important;
        z-index: 2001 !important;
        margin: 0 !important;
        align-items: center !important;
        justify-content: center !important;
    }

    body .lit-menu-dot {
        width: 6px !important;
        height: 6px !important;
        background-color: var(--color-primary) !important;
        border-radius: 50% !important;
        display: block !important;
    }


    /* --- Menu Container / Overlay --- */
    body .lit-menu-cover {
        bottom: -100%;
        top: auto;
        height: calc(100vh - 130px);
        transform: none;
    }

    body .lit-menu-cover.active {
        visibility: visible;
        pointer-events: auto;
    }


    /* --- Menu Structure --- */
    body .lit-menu {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2rem !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(190, 192, 192, 0.05) !important;
        box-shadow: var(--shadow-glass) !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .lit-mobile-menu {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .lit-mobile-menu a {
        font-size: 1.5rem !important;
        color: #fff !important;
        font-family: 'Dax-Regular', sans-serif !important;
        opacity: 0;
        transition: color 0.3s ease !important;
    }

    .lit-menu-cover.active .lit-mobile-menu a {
        opacity: 1;
    }

    .lit-menu-contact-btn {
        opacity: 0;
        margin-top: 1rem;
    }

    .lit-menu-cover.active .lit-menu-contact-btn {
        opacity: 1;
    }
}