/* =========================================================
   DJ SKALATA — DJ AGENCY GLOBAL APP.CSS
========================================================= */

:root {
    --bg: #03040b;
    --bg-2: #070915;
    --bg-3: #0b1022;

    --text: #ffffff;
    --text-soft: #f4f6ff;
    --muted: #aeb4c8;

    --purple: #a855f7;
    --purple-2: #7c3aed;
    --pink: #ff3eb5;
    --blue: #35a7ff;
    --cyan: #37e7ff;
    --green: #25d366;

    --card: rgba(255, 255, 255, 0.055);
    --card-strong: rgba(255, 255, 255, 0.095);
    --line: rgba(255, 255, 255, 0.13);
    --line-strong: rgba(255, 255, 255, 0.24);

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;

    --shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
    --shadow-neon: 0 0 42px rgba(168, 85, 247, 0.34);

    --transition: .26s ease;
}

/* RESET */

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    padding-top: 96px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 6%, rgba(168, 85, 247, .20), transparent 28%),
        radial-gradient(circle at 78% 10%, rgba(53, 167, 255, .16), transparent 30%),
        radial-gradient(circle at 92% 70%, rgba(255, 62, 181, .13), transparent 32%),
        linear-gradient(180deg, #02030a 0%, #070915 48%, #02030a 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 82%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* GLOBAL */

.page {
    width: 100%;
}

.container {
    width: min(1360px, calc(100% - 48px));
    margin: 0 auto;
}

.card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(168,85,247,.16), transparent 36%),
        radial-gradient(circle at 90% 10%, rgba(53,167,255,.14), transparent 34%);
    pointer-events: none;
}

.page-title {
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 92px);
    line-height: .92;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: var(--text);
}

.page-subtitle {
    max-width: 650px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 17px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--purple);
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.mini-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 0 26px rgba(255,62,181,.36);
}

.mini-icon svg {
    width: 15px;
    height: 15px;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(2, 3, 10, .88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 70px rgba(0,0,0,.48);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168,85,247,.65), rgba(53,167,255,.55), rgba(255,62,181,.55), transparent);
}

.header-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 50%, rgba(168,85,247,.18), transparent 28%),
        radial-gradient(circle at 82% 50%, rgba(255,62,181,.12), transparent 26%);
    opacity: .9;
}

.nav {
    position: relative;
    width: min(1440px, calc(100% - 56px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 18px 0;
}

/* BRAND */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-logo {
    height: 58px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 20px rgba(168,85,247,.34))
        drop-shadow(0 0 18px rgba(53,167,255,.16));
    transition: transform var(--transition), filter var(--transition);
}

.brand:hover .brand-logo {
    transform: translateY(-2px) scale(1.04);
    filter:
        drop-shadow(0 0 28px rgba(168,85,247,.58))
        drop-shadow(0 0 26px rgba(255,62,181,.22));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    text-transform: uppercase;
}

.brand-text strong {
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -.4px;
    background: linear-gradient(135deg, var(--purple), var(--pink), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* MENU */

.menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin: 0 auto;
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .35px;
    transition: color var(--transition), transform var(--transition), text-shadow var(--transition);
}

.menu a:hover,
.menu a.active {
    color: var(--purple);
    text-shadow: 0 0 22px rgba(168,85,247,.65);
    transform: translateY(-1px);
}

.menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--blue));
    box-shadow: 0 0 18px rgba(255,62,181,.55);
    transform: translateX(-50%);
    transition: width var(--transition);
}

.menu a:hover::after,
.menu a.active::after {
    width: 70%;
}

.nav-icon,
.btn-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.nav-icon svg,
.btn-icon svg {
    width: 18px;
    height: 18px;
}

/* LANGUAGE */

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border-radius: 9px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.12);
}

.lang-switcher a {
    padding: 10px 12px;
    border-radius: 7px;
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: white;
    background: rgba(168,85,247,.18);
}

/* BUTTONS */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.18);
    color: white;
    cursor: pointer;
    font-weight: 950;
    text-transform: uppercase;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border var(--transition);
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary,
.booking-btn {
    color: white !important;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-color: rgba(255,62,181,.55);
    box-shadow:
        0 0 0 1px rgba(255,62,181,.14),
        0 18px 42px rgba(255,62,181,.24),
        0 12px 34px rgba(168,85,247,.20);
}

.btn-primary::before,
.booking-btn::before {
    content: "";
    position: absolute;
    inset: -80%;
    background: linear-gradient(120deg, transparent 38%, rgba(255,255,255,.82), transparent 62%);
    transform: translateX(-60%) rotate(18deg);
    transition: transform .75s ease;
}

.btn-primary:hover::before,
.booking-btn:hover::before {
    transform: translateX(60%) rotate(18deg);
}

.login-btn {
    background: transparent;
    border-color: rgba(255,62,181,.55);
}

.logout-btn,
.admin-link {
    background: rgba(255,255,255,.055);
    color: white;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
}

.admin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.auth-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BURGER */

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.055);
    color: white;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: white;
    display: block;
    border-radius: 999px;
    transition: var(--transition);
}

/* FORMS */

input,
textarea,
select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: white;
    outline: none;
    transition: border var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(168,85,247,.75);
    background: rgba(255,255,255,.085);
    box-shadow:
        0 0 0 4px rgba(168,85,247,.12),
        0 0 34px rgba(53,167,255,.10);
}

input::placeholder,
textarea::placeholder {
    color: rgba(174,180,200,.72);
}

/* ALERTS */

.alert-success,
.alert-error {
    width: min(1280px, calc(100% - 40px));
    margin: 20px auto;
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.alert-success {
    color: #eafff1;
    background: rgba(37, 211, 102, .13);
    border: 1px solid rgba(37, 211, 102, .35);
}

.alert-error {
    color: #fff0f4;
    background: rgba(255, 62, 181, .13);
    border: 1px solid rgba(255, 62, 181, .35);
}

/* FOOTER */

.footer {
    position: relative;
    overflow: hidden;
    margin-top: 90px;
    padding: 0 clamp(20px, 4vw, 80px) 30px;
    color: var(--muted);
    border-top: 1px solid rgba(255,255,255,.12);
    background:
        radial-gradient(circle at 20% 0%, rgba(168,85,247,.20), transparent 34%),
        radial-gradient(circle at 80% 0%, rgba(255,62,181,.14), transparent 32%),
        linear-gradient(180deg, rgba(7,9,21,.94), rgba(2,3,10,.99));
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 68px 68px;
    pointer-events: none;
}

.footer-glow {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--blue), var(--pink), transparent);
}

.footer-inner {
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
    padding: 48px 0 34px;
    display: grid;
    grid-template-columns: 1.15fr 1.45fr auto;
    gap: 34px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand-logo {
    height: 64px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 22px rgba(168,85,247,.35))
        drop-shadow(0 0 18px rgba(53,167,255,.16));
}

.footer-brand strong {
    display: block;
    color: white;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -.4px;
    text-transform: uppercase;
}

.footer-brand p {
    margin: 7px 0 0;
    line-height: 1.55;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 850;
    text-transform: uppercase;
    font-size: 13px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--purple);
    text-shadow: 0 0 20px rgba(168,85,247,.62);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.14);
    transition: var(--transition);
}

.footer-socials a:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(168,85,247,.24), rgba(255,62,181,.20));
    box-shadow: 0 20px 48px rgba(255,62,181,.22);
}

.footer svg {
    width: 19px;
    height: 19px;
}

.footer-bottom {
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
}

/* WHATSAPP */

.footer-whatsapp-btn {
    position: fixed;
    right: 28px;
    bottom: 26px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 15px 22px;
    border-radius: 14px;
    background: rgba(3, 4, 11, .72);
    color: white;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid rgba(37,211,102,.70);
    box-shadow:
        0 0 0 1px rgba(37,211,102,.12),
        0 18px 48px rgba(37,211,102,.20);
    backdrop-filter: blur(18px);
    transition: var(--transition);
}

.footer-whatsapp-btn:hover {
    transform: translateY(-4px);
    background: rgba(37,211,102,.12);
    box-shadow:
        0 0 0 1px rgba(37,211,102,.22),
        0 24px 62px rgba(37,211,102,.32);
}

/* MOBILE */

@media (max-width: 1100px) {
    .menu-links {
        gap: 18px;
    }

    .menu a {
        font-size: 13px;
    }
}

@media (max-width: 920px) {
    .container,
    .nav {
        width: min(100% - 32px, 1360px);
    }

    .nav {
        justify-content: space-between;
    }

    .brand-logo {
        height: 48px;
        max-width: 155px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu {
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px;
        border-radius: 20px;
        background:
            radial-gradient(circle at 18% 0%, rgba(168,85,247,.20), transparent 36%),
            linear-gradient(180deg, rgba(7,9,21,.98), rgba(2,3,10,.98));
        border: 1px solid rgba(255,255,255,.15);
        box-shadow: 0 34px 100px rgba(0,0,0,.70);
    }

    .menu.open {
        display: flex;
    }

    .menu-links,
    .menu-right,
    .auth-group {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .menu a,
    .menu button,
    .menu .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        border-radius: 12px;
        background: rgba(255,255,255,.045);
        border: 1px solid rgba(255,255,255,.09);
    }

    .menu a::after {
        display: none;
    }

    .lang-switcher {
        justify-content: center;
        width: 100%;
        border-radius: 12px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-socials,
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    body {
        padding-top: 84px;
    }

    .container {
        width: min(100% - 24px, 1360px);
    }

    .site-header .container {
        width: calc(100% - 24px);
    }

    .nav {
        width: 100%;
        padding: 14px 0;
    }

    .page-title {
        font-size: clamp(38px, 12vw, 56px);
        letter-spacing: -1.7px;
    }

    .card {
        border-radius: 22px;
        padding: 20px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        max-width: 46px;
        height: 46px;
    }

    .brand-text {
        display: none;
    }

    .footer-brand-logo {
        height: 56px;
        max-width: 160px;
    }

    .footer-links a {
        width: 100%;
        justify-content: center;
    }

    .footer-whatsapp-btn {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
    }

    .footer-whatsapp-btn::before {
        content: "💬";
        font-size: 25px;
    }
}



.auth-page{
    min-height: calc(100vh - 90px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 20px;
    position:relative;
    overflow:hidden;
}

.auth-background{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top left, rgba(168,85,247,.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(53,167,255,.18), transparent 35%);
    pointer-events:none;
}

.auth-card{
    position:relative;
    z-index:2;
    width:100%;
    max-width:520px;
    padding:42px;
    border-radius:32px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(20px);
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.auth-logo{
    display:flex;
    justify-content:center;
    margin-bottom:18px;
}

.logo-circle{
    width:84px;
    height:84px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#a855f7,#35a7ff);
    box-shadow:
        0 0 30px rgba(168,85,247,.45),
        0 0 60px rgba(53,167,255,.25);
}

.logo-circle i{
    color:#fff;
    font-size:30px;
}

.auth-badge{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#9fdcff;
    font-size:.9rem;
    margin-bottom:14px;
}

.auth-title{
    text-align:center;
    font-size:2.2rem;
    margin-bottom:12px;
    color:#fff;
}

.auth-subtitle{
    text-align:center;
    color:rgba(255,255,255,.72);
    margin-bottom:32px;
    line-height:1.7;
}

.auth-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.auth-form .form-group{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.auth-form label{
    color:#fff;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
}

.auth-form input{
    height:58px;
    border:none;
    border-radius:18px;
    padding:0 18px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:1rem;
    transition:.25s ease;
}

.auth-form input:focus{
    outline:none;
    border-color:rgba(168,85,247,.7);
    box-shadow:0 0 0 4px rgba(168,85,247,.14);
}

.auth-form input::placeholder{
    color:rgba(255,255,255,.35);
}

.auth-btn{
    height:58px;
    border-radius:18px;
    font-size:1rem;
    font-weight:700;
    margin-top:6px;
}

.alert-error{
    margin-bottom:24px;
    border-radius:18px;
    padding:16px;
    background:rgba(255,59,92,.12);
    border:1px solid rgba(255,59,92,.25);
    color:#ffb8c5;
}

@media (max-width:768px){

    .auth-card{
        padding:30px 22px;
        border-radius:26px;
    }

    .auth-title{
        font-size:1.8rem;
    }

}