/* 
    Project: Diamond Draft Weekend | Shared CSS | Mobile | Version 0.0.1
       File: /public/css/ddw-shared-mobile.css
*/

/* ================================
   MOBILE HEADER / NAV
================================ */
.nav-wrap {
    padding: 10px 0;
    background: linear-gradient(125deg, #000000, #0d113b, #000000);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
    min-height: 58px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(193,157,84,0.45);
    border-radius: 6px;
    background: rgba(193,157,84,0.12);
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.nav-left {
    display: none;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-center img {
    height: 58px;
    transform: none;
}

.nav-right {
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
}

.nav-right .login {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-link img {
    width: 30px;
    height: 30px;
    object-fit: contain; 
}

.nav-right .btn {
    display: none;
}

.login {
    margin-left: 0;
}

.mobile-nav-panel {
    position: fixed;
    top: 78px;
    left: -280px;
    width: 260px;
    height: calc(100vh - 78px);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: linear-gradient(125deg, #000000, #0d113b, #000000);
    border-right: 1px solid rgba(255,255,255,0.10);
    z-index: 1001;
    transition: left 0.25s ease;
}

body.mobile-nav-open .mobile-nav-panel {
    left: 0;
}

.mobile-nav-panel a {
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'Impact', sans-serif;
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
    color: #c19d54;
}

.mobile-nav-panel a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.mobile-register-link {
    margin-top: 10px;
    width: fit-content;
    align-self: flex-start;
    background: #c19d54;
    color: #04001d !important;
    border: 4px solid transparent;
    border-radius: 2px;
    padding: 8px 14px !important;
    font-family: 'bc-barell', sans-serif !important;
    font-size: 24px;
    font-weight: 600 !important;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.mobile-register-link:hover {
    background: transparent !important;
    color: #c19d54 !important;
    border-color: #c19d54;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 78px 0 0 0;
    display: block;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: 0.2s ease;
}

body.mobile-nav-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}

/* content card */
.content-container {
    width: 85%;
    padding: 34px 24px;
}
.content-container .divider {
    width: 65%;
}

/* ================================
   MOBILE FOOTER
================================ */

.footer-inner {
    max-width: 760px;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 45px 24px;
    text-align: center;
}

.footer-logo {
    margin-left: auto;
    margin-right: auto;
}

.footer-tag {
    max-width: 100%;
}

.footer-socials {
    justify-content: center;
    align-items: center;
    margin: 18px auto 28px;
    width: 100%;
}

.footer-bottom {
    max-width: 760px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 18px 24px;
}