/* ==========================================================
   HEADER & NAV
   ========================================================== */
.sc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 6, 15, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 45, 247, 0.15);
    transition: background 0.3s ease;
}

.sc-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    height: 70px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.sc-nav-logo a {
    display: flex;
    align-items: center;
}

.sc-logo-text {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--sc-white);
    white-space: nowrap;
}

.sc-logo-accent { color: var(--sc-pink); }
.sc-logo-group  { color: var(--sc-white-60); font-size: 12px; }

.sc-nav-menu { margin-left: auto; }

.sc-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sc-nav-list li a {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sc-white-60);
    transition: color 0.2s ease;
    padding: 4px 0;
    position: relative;
}

.sc-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--sc-cyan);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.sc-nav-list li a:hover,
.sc-nav-list li.current-menu-item > a {
    color: var(--sc-white);
}

.sc-nav-list li a:hover::after,
.sc-nav-list li.current-menu-item > a::after {
    transform: scaleX(1);
}

.sc-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.sc-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--sc-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sc-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.sc-hamburger.active span:nth-child(2) { opacity: 0; }
.sc-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
    .sc-hamburger { display: flex; }
    .sc-nav-cta   { display: none; }
    .sc-nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(8, 6, 15, 0.98);
        border-bottom: 1px solid var(--sc-pink-border);
        padding: 24px;
    }
    .sc-nav-menu.open { display: block; }
    .sc-nav-list { flex-direction: column; align-items: flex-start; gap: 20px; }
    .sc-nav-list li a { font-size: 14px; }
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.sc-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sc-hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-hero-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
    padding-bottom: 120px;
}

.sc-hero-text {
    max-width: 600px;
}

.sc-hero-headline {
    font-size: clamp(36px, 7vw, 80px);
    line-height: 1.0;
    margin-bottom: 24px;
    margin-top: 12px;
}

.sc-hero-sub {
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--sc-white-60);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

/* ==========================================================
   EVENTS SECTION
   ========================================================== */
.sc-events-preview { background: var(--sc-black); }

.sc-events-grid { }

.sc-event-card { cursor: pointer; }

.sc-event-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.sc-event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sc-event-card:hover .sc-event-thumb img {
    transform: scale(1.04);
}

.sc-event-body {
    padding: 20px 20px 22px;
}

.sc-event-title {
    font-size: 18px;
    margin: 10px 0 6px;
}

.sc-event-title a {
    color: var(--sc-white);
    transition: color 0.2s;
}

.sc-event-title a:hover { color: var(--sc-pink); }

.sc-event-meta {
    font-size: 12px;
    color: var(--sc-white-40);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.sc-event-sep { margin: 0 6px; }

.sc-event-excerpt {
    font-size: 13px;
    color: var(--sc-white-60);
    margin-bottom: 14px;
    line-height: 1.6;
}

.sc-event-cta {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sc-cyan);
    transition: color 0.2s;
}

.sc-event-cta:hover { color: var(--sc-pink); }

.sc-events-empty {
    padding: 48px;
    text-align: center;
    border: 1px dashed var(--sc-pink-border);
    color: var(--sc-white-40);
}

.sc-events-footer {
    margin-top: 36px;
    text-align: center;
}

/* ==========================================================
   SERVICES SECTION
   ========================================================== */
.sc-services { background: var(--sc-black-mid); }

.sc-svc-card { padding: 32px 28px; }

.sc-svc-icon {
    margin-bottom: 16px;
}

.sc-svc-name {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sc-svc-desc {
    font-size: 14px;
    color: var(--sc-white-60);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sc-svc-link {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sc-pink);
    transition: color 0.2s;
}

.sc-svc-link.sc-cyan   { color: var(--sc-cyan); }
.sc-svc-link.sc-violet { color: var(--sc-violet); }
.sc-svc-link:hover     { opacity: 0.75; }

/* ==========================================================
   BOOKING CTA BANNER
   ========================================================== */
.sc-booking-cta {
    background: var(--sc-black-card);
    border-top: 1px solid var(--sc-pink-border);
    border-bottom: 1px solid var(--sc-cyan-border);
    padding: 48px 0;
}

.sc-booking-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.sc-booking-text h2 {
    font-size: clamp(22px, 3vw, 34px);
    margin: 8px 0 6px;
}

.sc-booking-text p {
    font-size: 14px;
    color: var(--sc-white-60);
}

/* ==========================================================
   ARTISTS SECTION
   ========================================================== */
.sc-artists-preview { background: var(--sc-black); }

.sc-artist-card { }

.sc-artist-img-wrap {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--sc-black-mid);
}

.sc-artist-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sc-artist-card:hover .sc-artist-img-wrap img {
    transform: scale(1.05);
}

.sc-artist-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sc-black-card);
}

.sc-artist-body { padding: 16px 16px 18px; }

.sc-artist-name {
    font-size: 16px;
    margin: 8px 0 10px;
}

.sc-artist-name a { color: var(--sc-white); transition: color 0.2s; }
.sc-artist-name a:hover { color: var(--sc-cyan); }

.sc-artist-links {
    display: flex;
    gap: 12px;
}

.sc-artist-links a {
    color: var(--sc-white-40);
    transition: color 0.2s;
}

.sc-artist-links a:hover { color: var(--sc-pink); }

/* ==========================================================
   GALLERY SECTION
   ========================================================== */
.sc-gallery-preview { background: var(--sc-black-mid); }

.sc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.sc-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: block;
    background: var(--sc-black-card);
}

.sc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sc-gallery-item:hover img { transform: scale(1.06); }

.sc-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 15, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sc-gallery-item:hover .sc-gallery-overlay { opacity: 1; }

.sc-gallery-overlay span {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sc-white);
}

@media (max-width: 768px) {
    .sc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .sc-gallery-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   NEWSLETTER SECTION
   ========================================================== */
.sc-newsletter {
    background: var(--sc-black);
    border-top: 1px solid rgba(255, 45, 247, 0.1);
}

.sc-newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sc-newsletter-text h2 {
    margin: 8px 0 14px;
}

.sc-newsletter-text p {
    font-size: 15px;
    color: var(--sc-white-60);
    line-height: 1.7;
    margin-bottom: 14px;
}

.sc-newsletter-ig-cta { font-size: 14px !important; }

.sc-newsletter-submit { width: 100%; margin-top: 4px; }

.sc-form-note {
    font-size: 11px;
    color: var(--sc-white-40);
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .sc-newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.sc-footer {
    background: var(--sc-black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 48px;
    align-items: start;
}

.sc-footer-logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.sc-footer-tagline {
    font-size: 13px;
    color: var(--sc-white-40);
    line-height: 1.6;
    margin-bottom: 24px;
}

.sc-social-links {
    display: flex;
    gap: 16px;
}

.sc-social-links a {
    color: var(--sc-white-40);
    transition: color 0.2s;
}

.sc-social-links a:hover { color: var(--sc-pink); }

.sc-footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.widget-title {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sc-white);
    margin-bottom: 16px;
}

.sc-footer-nav-list li { margin-bottom: 10px; }

.sc-footer-nav-list a {
    font-size: 13px;
    color: var(--sc-white-40);
    transition: color 0.2s;
}

.sc-footer-nav-list a:hover { color: var(--sc-cyan); }

.sc-footer-contact li {
    margin-bottom: 12px;
}

.sc-contact-label {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sc-white-40);
    margin-bottom: 2px;
}

.sc-footer-contact a {
    font-size: 13px;
    color: var(--sc-white-60);
    transition: color 0.2s;
}

.sc-footer-contact a:hover { color: var(--sc-cyan); }

.sc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.sc-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.sc-copyright {
    font-size: 12px;
    color: var(--sc-white-40);
}

.sc-footer-legal-list {
    display: flex;
    gap: 20px;
}

.sc-footer-legal-list a {
    font-size: 12px;
    color: var(--sc-white-40);
    transition: color 0.2s;
}

.sc-footer-legal-list a:hover { color: var(--sc-white); }

@media (max-width: 900px) {
    .sc-footer-inner    { grid-template-columns: 1fr; gap: 36px; }
    .sc-footer-widgets  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .sc-footer-widgets { grid-template-columns: 1fr; }
}

/* ==========================================================
   ARCHIVE PAGES (Events, Artists, Gallery)
   ========================================================== */
.sc-archive-header {
    padding: 80px 0 48px;
    background: var(--sc-black);
    border-bottom: 1px solid var(--sc-pink-border);
}

.sc-archive-title {
    font-size: clamp(28px, 5vw, 56px);
}

.sc-archive-content {
    padding: 60px 0;
    background: var(--sc-black);
}

/* ==========================================================
   SINGLE POST / PAGE
   ========================================================== */
.sc-single-header {
    padding: 80px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-single-content {
    padding: 60px 0;
    max-width: 780px;
}

/* ==========================================================
   PAGINATION
   ========================================================== */
.sc-pagination {
    margin-top: 48px;
    text-align: center;
}

.sc-pagination-list {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.sc-pagination-list li a,
.sc-pagination-list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-family: var(--font-display);
    font-size: 12px;
    border: 1px solid var(--sc-white-20);
    color: var(--sc-white-60);
    transition: all 0.2s;
}

.sc-pagination-list li a:hover {
    border-color: var(--sc-cyan);
    color: var(--sc-cyan);
}

.sc-pagination-list li span.current {
    background: var(--sc-pink);
    border-color: var(--sc-pink);
    color: var(--sc-black);
}

/* ==========================================================
   SECTION TITLE STANDARD
   ========================================================== */
.sc-section-title {
    font-size: clamp(24px, 4vw, 40px);
    font-family: var(--font-display);
}

/* ==========================================================
   BOOKING / CONTACT PAGES
   ========================================================== */
.sc-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.sc-studio-option {
    padding: 32px;
}

.sc-studio-option h3 { margin-bottom: 12px; }

.sc-price-table {
    margin: 20px 0;
    border: 1px solid var(--sc-white-10);
    width: 100%;
    border-collapse: collapse;
}

.sc-price-table th,
.sc-price-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid var(--sc-white-10);
}

.sc-price-table th {
    background: var(--sc-black-mid);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sc-white-60);
}

.sc-price-table td { color: var(--sc-white-60); }
.sc-price-table .sc-price { color: var(--sc-cyan); font-weight: 600; }

@media (max-width: 768px) {
    .sc-booking-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   SPONSOR / PRESS PAGE
   ========================================================== */
.sc-sponsor-tier {
    padding: 28px;
    margin-bottom: 16px;
}

.sc-sponsor-tier h3 {
    margin-bottom: 8px;
}

.sc-sponsor-tier ul {
    list-style: disc;
    padding-left: 1.2em;
    color: var(--sc-white-60);
    font-size: 14px;
    line-height: 1.8;
}

/* ==========================================================
   404 PAGE
   ========================================================== */
.sc-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.sc-404 h1 {
    font-size: clamp(80px, 20vw, 180px);
    color: var(--sc-pink);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 0;
}

.sc-404 h2 { margin-bottom: 16px; }
.sc-404 p  { color: var(--sc-white-60); margin-bottom: 28px; }

/* ==========================================================
   FADE-IN ANIMATION (triggered by IntersectionObserver in JS)
   ========================================================== */
.sc-fade-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.sc-fade-init.sc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   BREADCRUMB
   ========================================================== */
.sc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--sc-white-40);
    margin-bottom: 16px;
}

.sc-breadcrumb a { color: var(--sc-white-40); transition: color 0.2s; }
.sc-breadcrumb a:hover { color: var(--sc-cyan); }

/* ==========================================================
   SINGLE EVENT META
   ========================================================== */
.sc-event-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
    font-size: 14px;
}

.sc-event-date-large  { color: var(--sc-white-60); }
.sc-event-venue-large { color: var(--sc-white-40); }

.sc-single-hero-img { margin: 32px 0; }
.sc-single-hero-img img { width: 100%; max-height: 520px; object-fit: cover; }

.sc-event-lineup h3 { margin-bottom: 12px; }
.sc-event-lineup ul { list-style: disc; padding-left: 1.2em; color: var(--sc-white-60); line-height: 2; }
.sc-event-map-link  { margin-top: 24px; }

/* ==========================================================
   ARTIST EMBED
   ========================================================== */
.sc-artist-embed {
    margin: 32px 0;
    border: 1px solid var(--sc-pink-border);
    padding: 4px;
}

.sc-artist-embed iframe { width: 100% !important; }

/* ==========================================================
   SINGLE TITLE
   ========================================================== */
.sc-single-title {
    font-size: clamp(24px, 4vw, 48px);
    margin-top: 12px;
}
