/* =========================================================
   RESET + GLOBAL BASE
   ========================================================= */
body {
    margin: 0;
    padding: 0;
    background: #0d0d0d;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

.hamburger {
    display: none;
}

/* =========================================================
   NAVBAR — CLEAN + CORRECTED
   ========================================================= */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    z-index: 1000;
    padding: 10px 20px;

    display: flex;
    align-items: center;
    justify-content: center;   /* keeps nav-center perfectly centered */
}

/* Left and right sides balance each other */
.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Center stays auto-sized */
.nav-center {
    flex: 0;
}

/* NAV LINKS */
.nav-center ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-center li {
    display: inline-block;
}

.nav-center a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-center a:hover {
    color: #ff0066;
}

/* SITE LOGO */
.logo {
    height: 80px;
    width: auto;
}

/* =========================================================
   HEADER STREAM LOGOS — FINAL FIX
   ========================================================= */

/* Right side container */
.nav-right {
    justify-content: flex-end;   /* push logos fully to the right */
    padding-right: 20px;         /* clean gap from screen edge */
}

/* Stream logos inside header */
.header-stream-logos {
    display: flex;
    gap: 12px;                   /* spacing between logos */
}

.header-stream-logos img {
    width: 75px;                 /* slightly larger for balance */
    height: 75px;
    object-fit: contain;
}



/* =========================================================
   PAGE LAYOUT
   ========================================================= */
.page {
    display: flex;
    align-items: flex-start;
    margin-top: 70px;
    padding: 0 20px 40px 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.main {
    flex: 1;
    margin-right: 20px;
    min-width: 0;
}

/* =========================================================
   HERO (FULL WIDTH)
   ========================================================= */
.hero {
    background: url('header.jpg') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

.hero h1 {
    margin: 0;
    padding: 20px 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    display: inline-block;
}

/* =========================================================
   HERO SPLIT LAYOUT (Homepage)
   ========================================================= */
.hero-split {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 25px;
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-left {
    flex: 1;
    display: flex;
}

.hero-left .hero-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 12px rgba(0, 234, 255, 0.25);
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-right .homepage-intro {
    width: 100%;
    margin: 0;
}

/* =========================================================
   INTRO BLOCKS (Homepage, Mixes, Socials, Events, Gallery, Videos, Bookings)
   ========================================================= */
.homepage-intro,
.mixes-intro,
.socials-intro,
.events-intro,
.gallery-intro,
.videos-intro,
.bookings-intro {
    max-width: 750px;
    margin: 30px auto 40px;
    padding: 22px 26px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    border: 1px solid rgba(0, 234, 255, 0.25);
    box-shadow: 0 0 12px rgba(0, 234, 255, 0.15);
    line-height: 1.62;
    color: #fff;
    backdrop-filter: blur(4px);
}

.homepage-intro h1,
.mixes-intro h1,
.socials-intro h1,
.events-intro h1,
.gallery-intro h1,
.videos-intro h1,
.bookings-intro h1 {
    font-size: 1.9rem;
    margin-bottom: 15px;
    text-align: center;
    color: #00eaff;
    text-shadow: 0 0 8px #00eaff;
}

.homepage-intro p,
.mixes-intro p,
.socials-intro p,
.events-intro p,
.gallery-intro p,
.videos-intro p,
.bookings-intro p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.homepage-intro a,
.mixes-intro a,
.socials-intro a,
.events-intro a,
.gallery-intro a,
.videos-intro a,
.bookings-intro a {
    color: #00eaff;
    font-weight: 600;
    text-decoration: none;
}

.homepage-intro a:hover,
.mixes-intro a:hover,
.socials-intro a:hover,
.events-intro a:hover,
.gallery-intro a:hover,
.videos-intro a:hover,
.bookings-intro a:hover {
    text-shadow: 0 0 6px #00eaff;
}

/* HOMEPAGE TAGLINE */
.tagline {
    text-align: center;
    margin: 25px auto 20px;
    max-width: 750px; /* matches intro block width */
}


/* =========================================================
   SOCIAL BUTTONS (Global)
   ========================================================= */
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 20px 0 30px;
}

.social-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    transition: 0.25s ease;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

/* Social button colours */
.social-btn.fb { background: #1877f2; border-color: rgba(24,119,242,0.6); }
.social-btn.fb:hover { box-shadow: 0 0 12px #1877f2; transform: translateY(-2px); }

.social-btn.tk { background: linear-gradient(135deg,#ff0050,#00f2ea); border-color: rgba(255,255,255,0.3); }
.social-btn.tk:hover { box-shadow: 0 0 12px #00f2ea; transform: translateY(-2px); }

.social-btn.mc { background: #3145ff; border-color: rgba(49,69,255,0.6); }
.social-btn.mc:hover { box-shadow: 0 0 12px #3145ff; transform: translateY(-2px); }

.social-btn.sc { background: #ff5500; border-color: rgba(255,85,0,0.6); }
.social-btn.sc:hover { box-shadow: 0 0 12px #ff5500; transform: translateY(-2px); }

.social-btn.ig { background: linear-gradient(135deg,#feda75,#d62976,#962fbf,#4f5bd5); border-color: rgba(255,255,255,0.3); }
.social-btn.ig:hover { box-shadow: 0 0 12px #d62976; transform: translateY(-2px); }

.social-btn.bk { background: #00eaff; color: #000; border-color: rgba(0,234,255,0.6); }
.social-btn.bk:hover { box-shadow: 0 0 12px #00eaff; transform: translateY(-2px); }

/* =========================================================
   SIDEBAR
   ========================================================= */
.sidebar {
    position: sticky;
    top: 40px;
    width: 260px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    padding: 15px;
    border-left: 1px solid rgba(255,255,255,0.1);
    max-height: calc(100vh - 160px);
    overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar h2 {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event {
    margin-bottom: 20px;
}

.event img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ============================
   FOOTER — TRUE TABLE LAYOUT
   ============================ */

footer {
    background: #000;
    border-top: 1px solid #111;
    padding: 5px 0 10px;
    width: 100%;
}

/* Table wrapper */
.footer-table {
    display: table;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    /* CLEAN INWARD SPACING */
    padding: 0 100px;   /* ← adjust this number to taste */
    
    border-collapse: collapse;
}

/* Rows */
.footer-row {
    display: table-row;
}

/* Cells */
.footer-cell {
    display: table-cell;
    width: 33.33%;
    padding: 6px 20px;
    vertical-align: middle;
}

/* ALIGNMENT CLASSES */
.footer-col-left  { text-align: center; }
.footer-col-center { 
    text-align: center; 
    border-left: 1px solid #333; 
    border-right: 1px solid #333;
}
.footer-col-right { text-align: center; }

/* ============================
   HEADERS
   ============================ */

.footer-header {
    color: #00eaff;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-shadow: 0 0 6px #00eaff;
    padding-bottom: 10px;
	text-decoration: underline;
}

/* ============================
   SPONSORS (LEFT COLUMN)
   ============================ */

.footer-stream-logos {
    display: inline-flex;
    gap: 14px;
    flex-wrap: nowrap;
}

.footer-stream-logos img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    opacity: 0.85;
    transition: 0.25s;
}

.footer-stream-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ============================
   COPYRIGHT (CENTER COLUMN)
   ============================ */

.footer-copy {
    color: #ccc;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ============================
   MAILING LIST (RIGHT COLUMN)
   ============================ */
.footer-mailing form {
    display: inline-flex;
    gap: 14px;
}

/* Bigger email box */
.footer-mailing input[type="email"] {
    padding: 14px 16px;
    width: 280px;
    border: 1px solid #00eaff88;
    background: #000;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    box-shadow: 0 0 12px #00eaff33 inset;
}

/* Bigger + neon-styled subscribe button */
.footer-mailing button {
    padding: 14px 26px;
    background: #00eaff;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;

    box-shadow:
        0 0 12px #00eaffaa,
        0 0 20px #00eaff55 inset;

    transition: 0.2s ease;
}

.footer-mailing button:hover {
    box-shadow:
        0 0 20px #00eaff,
        0 0 30px #00eaffaa inset;
    transform: scale(1.07);
}

/* =========================================================
   MIXES PAGE — GRID
   ========================================================= */
.mixes-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 20px;
}

.mixes-table td {
    width: 25%;
    vertical-align: top;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0;
}

.mix-item {
    background: #111;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mix-item:hover {
    transform: scale(1.04);
    box-shadow: 0 0 20px rgba(255, 0, 150, 0.5);
}

.mix-item img {
    width: 100%;
}

.mix-info {
    padding: 12px;
    text-align: center;
    background: #000;
}

.mix-info h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.mix-info p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* =========================================================
   SOCIALS PAGE — FEED GRID
   ========================================================= */
.social-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feed-box {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    max-width: 520px;
}

.feed-embed {
    background: #111;
    border-radius: 6px;
    padding: 10px;
    min-height: 200px;
    border: 1px solid #222;
    max-height: 600px;
    overflow-y: auto;
    flex: 1;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* SoundCloud special container */
.feed-box.soundcloud .feed-embed {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    height: 600px !important;
    overflow: hidden !important;
}

.sc-scroll {
    height: 600px !important;
    overflow-y: auto;
    overflow-x: hidden;
}

.sc-scale {
    transform: scale(0.95);
    transform-origin: top left;
    width: 180%;
}

.sc-scale iframe {
    height: 2600px !important;
    width: 100%;
    border: none;
}

/* Facebook widget hard limits */
.sk-ww-facebook-page-posts,
.sk-ww-facebook-page-posts *,
.sk-ww-facebook-page-posts div,
.sk-ww-facebook-page-posts iframe {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* LIVE PLATFORMS BOX */
.live-platforms-box {
    text-align: center;
}

.live-platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 15px;
}

.live-platform {
    background: #111;
    padding: 15px;
    border: 1px solid #0ff;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.live-platform img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.live-platform:hover {
    box-shadow: 0 0 12px #0ff;
    transform: translateY(-3px);
}

.live-platform span {
    margin-top: 5px;
    font-size: 1rem;
    letter-spacing: 1px;
}


/* =========================================================
   EVENTS PAGE — UPCOMING EVENTS GRID
   ========================================================= */
.events-upcoming-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-top: 25px;
}

.events-upcoming-list .event-card {
    display: block;
    width: calc(33.333% - 22px);
    max-width: 320px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(0,234,255,0.25);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 12px rgba(0,234,255,0.15);
    backdrop-filter: blur(4px);
    transition: 0.25s ease;
    overflow: hidden;
}

.events-upcoming-list .event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 16px rgba(0,234,255,0.35);
}

.events-upcoming-list .event-card-poster img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.events-upcoming-list .event-card-date {
    display: inline-flex;
    gap: 6px;
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    background: #ff0066;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.event-card-info h3 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
}

.event-location,
.event-time {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

.event-ticket-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ff0066;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.25s ease;
}

.event-ticket-btn:hover {
    background: #ff0066;
    color: #000;
}

/* =========================================================
   PAST EVENTS — GRID
   ========================================================= */
.past-year-block {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.past-event {
    background: #111;
    border-radius: 6px;
    border: 1px solid #222;
    max-width: 200px;
    text-align: center;
}

.past-event img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #000;
}

.past-event-info {
    margin-top: 6px;
    font-size: 0.85rem;
    opacity: 0.85;
}

/* =========================================================
   GALLERY — CAROUSEL + LIGHTBOX
   ========================================================= */
/* GALLERY — EVENT TITLE */
.event-title {
    font-size: 1.4rem;
    margin: 40px 0 15px;
    color: #0ff;
    text-shadow: 0 0 8px #0ff;
    border-left: 4px solid #0ff;
    padding-left: 10px;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.event-carousel {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0;
    height: 150px;
}

.event-carousel img {
    height: 100%;
    width: 160px;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: center;
    border-radius: 6px;
    transition: 0.25s ease;
    pointer-events: auto;
}

.event-carousel img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px #0ff;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.6);
    border: 2px solid #0ff;
    border-radius: 50%;
    color: #0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.arrow-left { left: 0; }
.arrow-right { right: 0; }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    box-shadow: 0 0 20px #0ff;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #0ff;
    cursor: pointer;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #0ff;
    cursor: pointer;
    user-select: none;
}

.lightbox-arrow.left {
    left: 40px;
}

.lightbox-arrow.right {
    right: 40px;
}

/* =========================================================
   VIDEOS PAGE — PLAYER + PLAYLIST
   ========================================================= */
.video-player-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.video-main {
    flex: 1;
}

#videoTitle {
    margin-top: 10px;
    font-size: 1.3rem;
    color: #0ff;
    text-shadow: 0 0 8px #0ff;
}

.video-playlist {
    width: 260px;
    max-height: 500px;
    overflow-y: auto;
    background: rgba(0,0,0,0.4);
    border-left: 1px solid #0ff;
    padding: 10px;
    border-radius: 8px;
}

.video-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.2s;
    padding: 6px;
    border-radius: 6px;
}

.video-item:hover {
    background: rgba(0,255,255,0.1);
}

.video-item img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #0ff;
}

.video-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}

.video-frame {
    width: 100%;
    background: #000;
    border-radius: 8px;
    border: 2px solid #0ff;
    box-shadow: 0 0 15px #0ff;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: visible;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* =========================================================
   BOOKINGS PAGE
   ========================================================= */
.booking-container {
    background: #111;
    border-radius: 8px;
    border: 1px solid #222;
    padding: 20px;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.booking-container h1 {
    margin: 0 0 10px 0;
    font-size: 2rem;
}

.booking-intro {
    font-size: 0.98rem;
    opacity: 0.85;
    margin-bottom: 20px;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-form label {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.booking-form input,
.booking-form textarea {
    background: #000;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 8px 10px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.booking-form textarea {
    resize: vertical;
}

.hp-field {
    display: none;
}

.booking-btn {
    margin-top: 10px;
    padding: 10px 16px;
    border-radius: 20px;
    border: 1px solid #ff0066;
    background: #ff0066;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.25s ease;
}

.booking-btn:hover {
    background: #000;
    color: #fff;
}

.quick-contact {
    margin-top: 20px;
    text-align: center;
}

.quick-contact p {
    margin: 0 0 8px 0;
    opacity: 0.85;
}

.quick-btn {
    display: inline-block;
    margin: 4px 6px;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #00aaff;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.25s ease;
}

.quick-btn:hover {
    background: #00aaff;
    color: #000;
}

.whatsapp-btn {
    border-color: #25d366;
}

.whatsapp-btn:hover {
    background: #25d366;
    color: #000;
}

.success-msg {
    margin-top: 10px;
    color: #4caf50;
    font-size: 0.9rem;
}

.error-msg {
    margin-top: 10px;
    color: #ff5252;
    font-size: 0.9rem;
}

/* =========================================================
   ERROR PAGES (403 / 500)
   ========================================================= */
.error-container {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-code {
    font-size: 2.6rem;
    margin: 0 0 10px 0;
}

.error-message {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.error-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 24px;
    border: 1px solid #ff0066;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: 0.25s ease;
}

.error-btn:hover {
    background: #ff0066;
    color: #000;
}
