/* ============ Core theme ============ */

:root {
    --bg-deep: #020617;
    --bg-panel: #050816;
    --bg-panel-soft: #06091a;
    --accent-pink: #ff4fd8;
    --accent-cyan: #22e0ff;
    --accent-purple: #a855f7;
    --accent-green: #4ade80;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --border-soft: #111827;
}

body.cyber-body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background:
      radial-gradient(circle at top center, #1d1b5a 0, #020617 55%, #000 100%);
}

/* ============ Neon outer shell ============ */

.neon-shell {
    max-width: 1500px;
    margin: 1rem auto 2rem auto;
    padding: 12px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, var(--accent-cyan), var(--accent-pink), var(--accent-purple));
    box-shadow:
        0 0 18px rgba(34, 224, 255, 0.9),
        0 0 32px rgba(255, 79, 216, 0.9),
        0 0 80px rgba(0, 0, 0, 1);
}

/* inner frame */
.app-main {
    background:
        radial-gradient(circle at top center, rgba(255, 79, 216, 0.35), transparent 55%),
        radial-gradient(circle at bottom center, rgba(34, 224, 255, 0.28), transparent 60%),
        linear-gradient(to bottom, #020617 0%, #020617 40%, #020617 100%);
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.95);
    padding: 1.6rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

/* subtle “road” perspective lines */
.app-main::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -70%;
    width: 160%;
    height: 260%;
    transform: perspective(900px) rotateX(70deg) translateX(-50%);
    pointer-events: none;
    opacity: 0.22;
    mix-blend-mode: screen;
    background-image:
        linear-gradient(to top, rgba(2, 6, 23, 0.9), transparent),
        repeating-linear-gradient(
            to right,
            rgba(34, 224, 255, 0.35) 0,
            rgba(34, 224, 255, 0.35) 2px,
            transparent 2px,
            transparent 40px
        ),
        repeating-linear-gradient(
            to top,
            rgba(255, 79, 216, 0.35) 0,
            rgba(255, 79, 216, 0.35) 1px,
            transparent 1px,
            transparent 40px
        );
}

/* ============ Header / nav (compact) ============ */

.site-header {
    margin-bottom: 0.75rem;
}

.site-nav {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 16px;
    background: radial-gradient(circle at top, rgba(10, 16, 40, 0.98), rgba(10, 16, 40, 0.96));
    border: 1px solid rgba(56, 189, 248, 0.6);
    box-shadow:
        0 0 14px rgba(34, 224, 255, 0.7),
        0 0 26px rgba(255, 79, 216, 0.5);
    height: 56px;
}

.nav-left,
.nav-right {
    flex-wrap: wrap;
    justify-content: flex-end;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* brand */

.brand-mark {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.05;
}

.brand-main {
    font-family: "Orbitron", system-ui;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* nav links */

.site-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    position: relative;
}

.site-nav a:hover {
    color: var(--accent-cyan);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    border-radius: 999px;
    transition: width 0.18s ease-out;
}

.site-nav a:hover::after {
    width: 100%;
}

.user-chip {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    font-size: 0.7rem;
    background-color: rgba(15, 23, 42, 0.9);
}

/* ============ Dashboard layout ============ */

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
    gap: 1.5rem;
}

/* generic panel */

.panel {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
    border-radius: 16px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    box-shadow:
        0 0 18px rgba(15, 23, 42, 0.9),
        0 0 32px rgba(15, 23, 42, 0.9);
    position: relative;
    overflow: hidden;
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(34, 224, 255, 0.6), rgba(255, 79, 216, 0.6));
    mask:
       linear-gradient(#000 0 0) content-box,
       linear-gradient(#000 0 0);
    -webkit-mask:
       linear-gradient(#000 0 0) content-box,
       linear-gradient(#000 0 0);

    mask-composite: exclude;
    -webkit-mask-composite: xor;

    opacity: 0.5;
}

/* hero panel */

.panel-hero {
    padding: 1.4rem 1.4rem 1.6rem 1.4rem;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
}

.panel-header.small {
    margin-bottom: 0.75rem;
}

.panel-title {
    font-family: "Orbitron", system-ui;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* pill tags */

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pill-soft {
    border: 1px solid rgba(148, 163, 184, 0.8);
    color: var(--text-muted);
}

/* fake tabs */

.panel-tabs {
    display: flex;
    gap: 0.4rem;
}

.panel-tabs .tab {
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.95);
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.panel-tabs .tab.active {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    box-shadow: 0 0 12px rgba(255, 79, 216, 0.7);
}

/* hero body */

.hero-body {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 1.3rem;
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-family: "Orbitron", system-ui;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 0.7rem;
}

.hero-copy p {
    color: var(--text-muted);
    max-width: 30rem;
}

.hero-actions {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* neon buttons */

button,
a[role="button"] {
    border-radius: 999px !important;
    border: 1px solid rgba(148, 163, 184, 0.7) !important;
    box-shadow:
        0 0 14px rgba(34, 224, 255, 0.8),
        0 0 26px rgba(255, 79, 216, 0.6);
    font-size: 0.85rem !important;
}

a[role="button"].secondary {
    border-color: rgba(255, 79, 216, 0.9) !important;
}

/* left hero visual */

.hero-visual {
    position: relative;
    min-height: 210px;
}

.city-fade {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background:
        radial-gradient(circle at top, rgba(255, 79, 216, 0.7), transparent 60%),
        radial-gradient(circle at bottom, rgba(34, 224, 255, 0.55), transparent 65%),
        linear-gradient(to top, #020617 0%, #020617 40%, #0b1220 100%);
    overflow: hidden;
}

/* fake “sun” */

.sun-orb {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle at center, #ff4fd8, #a855f7 60%, transparent 70%);
    box-shadow: 0 0 35px rgba(255, 79, 216, 0.9);
}

/* vertical light streaks like buildings */

.city-lines {
    position: absolute;
    inset: 35% 10% 0 10%;
    background:
        repeating-linear-gradient(
            to right,
            rgba(34, 224, 255, 0.2) 0,
            rgba(34, 224, 255, 0.2) 2px,
            transparent 2px,
            transparent 18px
        );
    opacity: 0.4;
}

/* overlay stats boxes */

.overlay-stats {
    position: absolute;
    right: 8px;
    bottom: 12px;
    display: grid;
    gap: 0.35rem;
    z-index: 2;
}

.mini-stat {
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 0.72rem;
}

.mini-stat .label {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.mini-stat .value {
    font-family: "Orbitron", system-ui;
    font-size: 0.9rem;
}

/* right column */

.panel-column {
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
}

.panel-metric {
    padding: 1rem 1.1rem;
}

.metric-body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.85rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.metric-label {
    color: var(--text-muted);
}

.metric-value {
    font-family: "Orbitron", system-ui;
    font-size: 0.8rem;
    color: var(--accent-cyan);
}

.metric-actions {
    margin-top: 0.75rem;
}

.metric-cta {
    margin-top: 3rem;
    font-size: 0.8rem;
    display: inline-block;
    cursor: pointer;
    color: var(--accent-pink);
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.metric-cta:hover {
    color: var(--accent-cyan);
}

/* rigs panel */

.rig-row {
    display: flex;
    flex-direction: column;
}

.rig-name {
    font-family: "Orbitron", system-ui;
    font-size: 0.85rem;
}

.rig-tags {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============ Shared: forms, tables, calendar, footer ============ */

form label {
    color: var(--text-main);
}

input,
textarea,
select {
    background-color: rgba(15, 23, 42, 0.96) !important;
    border-radius: 0.8rem !important;
    border: 1px solid rgba(148, 163, 184, 0.65) !important;
    color: var(--text-main) !important;
}

/* calendar table reused from earlier, just refined */

.calendar-wrapper {
    max-width: 980px;
    margin: 0 auto 1.5rem auto;
}

/* calendar table */

.calendar {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 4rem;
    font-size: 0.95rem;              /* slightly larger text */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(15, 23, 42, 0.9);
}

.calendar th,
.calendar td {
    padding: 1rem 0.6rem;        /* taller cells */
    border: 1px solid rgba(15, 23, 42, 0.95);
    background-color: rgba(15, 23, 42, 0.9);
}

/* day-of-week header */
.calendar th {
    background: linear-gradient(
        90deg,
        rgba(34, 224, 255, 0.6),
        rgba(255, 79, 216, 0.7)
    );
    color: #f9fafb;                 /* bright text */
    text-shadow: 0 0 4px rgba(15, 23, 42, 0.9);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.calendar td a {
    display: block;
    text-decoration: none;
    color: #f9fafb;
    text-align: center;
}

.calendar td.available {
    background: radial-gradient(circle at top, #73ff01, #052e16);
    color: #e5e7eb;
    position: relative;
    transition:
        transform 0.15s ease-out,
        box-shadow 0.15s ease-out,
        filter 0.15s ease-out;
    cursor: pointer;
}

.calendar td.unavailable {
    background: radial-gradient(circle at top, #b91c1c, #450a0a);
    color: #fee2e2;
}

.calendar td.available:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(115, 255, 1, 0.6);
    filter: brightness(1.08);
}

.legend.available {
    background: linear-gradient(135deg, #22c55e, #73ff01);
}

.legend.unavailable {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}


.calendar td.other-month {
    background: rgba(15, 23, 42, 0.6);
    opacity: 0.25;
}

.calendar td.other-month a {
    cursor: default;
}

.calendar-title {
    color: #01eeff;              /* bright yellow */
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    text-shadow:
        0 0 6px rgba(15, 23, 42, 0.9),
        0 0 10px rgb(0, 250, 250);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.calendar-page h1 {
    color: #facc15; /* bright yellow */
    margin-bottom: 0.4rem;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
}

.calendar-nav span {
    color: #fefce8;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.calendar-nav a {
    color: #22e0ff;
    text-decoration: none;
    font-size: 0.85rem;
}

.calendar-nav a:hover {
    color: #ff4fd8;
    text-decoration: underline;
}

.calendar-legend {
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.legend {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 0.4rem;
    border-radius: 4px;
}

@media (max-width: 960px) {
    .calendar {
        font-size: 0.8rem;
    }

    .calendar th,
    .calendar td {
        padding: 0.45rem 0.35rem;
    }

    .calendar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* gallery */

.gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.gallery-grid article {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
    box-shadow: 0 0 22px rgba(15, 23, 42, 0.95);
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* footer */

.site-footer {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    padding-top: 0.6rem;
    border-top: 1px solid rgba(56, 189, 248, 0.4);
    text-shadow: 0 0 8px rgba(34, 224, 255, 0.5);
}

/* responsive */

@media (max-width: 960px) {
    .app-main {
        padding: 1.2rem 1.3rem 1.6rem 1.3rem;
    }
    .dashboard-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-body {
        grid-template-columns: minmax(0, 1fr);
    }
    .site-nav {
        flex-direction: column;
        height: auto;
        gap: 0.35rem;
    }

    .user-chip {
	display: none;
    }

    .nav-right {
	justify-content: center;
    }	

    .panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .panel-tabs {
        display: none; /* hide Overview/Weddings/Live Shows on small screens */
    }

    .pill-soft {
        font-size: 0.65rem;
        padding: 0.16rem 0.55rem;
    }
}


.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 14px;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Neon hologram effect */
.hologram-border {
    position: relative;
}

.hologram-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    padding: 2px;

    background: linear-gradient(
        135deg,
        rgba(34, 224, 255, 0.7),
        rgba(255, 79, 216, 0.7),
        rgba(141, 0, 255, 0.7),
        rgba(34, 224, 255, 0.7)
    );
    background-size: 300% 300%;
    animation: holo-border 6s linear infinite;

    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;

    z-index: 5;
}

@keyframes holo-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
    margin-top: 1rem;
}

.about-main h1 {
    color: #c300ff; /* warm yellow */
    margin-bottom: 0.6rem;
}

.about-main h2 {
    color: #c300ff;
    margin-top: 1.4rem;
    margin-bottom: 0.4rem;
}

.about-main p,
.about-main li {
    color: #00e1ff; /* very light yellow/white */
}

.about-main ul {
    padding-left: 1.2rem;
}

.about-main li::marker {
    color: #ff00aa;
}

/* About card */

.about-card {
    background: radial-gradient(circle at top, rgba(250, 204, 21, 0.2), rgba(15, 23, 42, 0.98));
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 179, 0.5);
    box-shadow:
        0 0 18px rgba(15, 23, 42, 0.9),
        0 0 32px rgba(132, 0, 255, 0.35);
    padding: 1.2rem 1.3rem 1.4rem 1.3rem;
}

.about-card-inner {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.about-card h3 {
    color: #00edf5;
    margin-top: 0.6rem;
    margin-bottom: 0.25rem;
}

.about-label {
    color: #c300ff;
    font-weight: 500;
}

.about-label-2 {
    color: #00edf5;
    font-weight: 500;
}

/* Photo */

.about-photo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.about-photo {
    width: 200px;
    height: 200px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(0, 225, 255, 0.8);
    box-shadow:
        0 0 18px rgba(149, 0, 248, 0.7),
        0 0 30px rgba(0, 221, 255, 0.4);
}

/* Clickable contact links */

.about-link {
    color: #00ffff;
    text-decoration: none;
}

.about-link:hover {
    color: #22e0ff;
    text-decoration: underline;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

/* Responsive */

@media (max-width: 960px) {
    .about-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

.booking-desc {
    color: #00edf5ce;
    font-weight: 200;
    font-size: 0.85rem;
}

.section-title {
    color: #00edf5ce;
    font-weight: 800;
    font-size: 2rem;
}

.admin-title {
    color: #c100fc;
    font-weight: 800;
    font-size: 1;
}
