/* ===================================
   Subpages & New Features Styles
   =================================== */

/* ===================================
   BLOB BACKGROUND ANIMATIONS
   =================================== */

.blob-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: blobFloat 18s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-magenta);
    top: -150px;
    left: -150px;
    animation-duration: 20s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--electric-blue);
    top: 30%;
    right: -100px;
    animation-duration: 16s;
    animation-delay: -4s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--sunset-purple);
    bottom: -100px;
    left: 25%;
    animation-duration: 22s;
    animation-delay: -8s;
}

.blob-4 {
    width: 250px;
    height: 250px;
    background: var(--gold-start);
    top: 50%;
    left: 10%;
    animation-duration: 14s;
    animation-delay: -2s;
    opacity: 0.2;
}

.blob-5 {
    width: 300px;
    height: 300px;
    background: var(--neon-magenta);
    bottom: 10%;
    right: 20%;
    animation-duration: 19s;
    animation-delay: -10s;
    opacity: 0.25;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(30px, -40px) scale(1.05); }
    50%  { transform: translate(-20px, 30px) scale(0.95); }
    75%  { transform: translate(40px, 20px) scale(1.03); }
}

/* ===================================
   MARQUEE STRIP
   =================================== */

.marquee-strip {
    background: var(--neon-magenta);
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
}

.marquee-track {
    display: inline-flex;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pure-black);
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* ===================================
   HEADER CTA BUTTON (nav area)
   =================================== */

.header-cta {
    padding: 10px 22px;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* ===================================
   HOME PAGE — UPCOMING EVENTS
   =================================== */

.upcoming-events {
    padding: 100px 0 80px;
    background: var(--night-charcoal);
}

.events-cta {
    text-align: center;
    margin-top: 60px;
}

.events-empty-home {
    text-align: center;
    color: var(--cool-grey);
    font-size: 1.1rem;
    padding: 60px 0;
    grid-column: 1 / -1;
}

/* ===================================
   EVENT CARDS (shared: home + events page)
   =================================== */

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 43, 138, 0.5);
    box-shadow: 0 12px 40px rgba(226, 43, 138, 0.2);
}

.event-card--past {
    opacity: 0.6;
}

.event-card__poster {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.event-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.event-card:hover .event-card__poster img {
    transform: scale(1.06);
}

.event-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--neon-magenta);
    color: var(--pure-black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 4px;
}

.event-card__badge--past {
    left: auto;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--cool-grey);
    border: 1px solid var(--cool-grey);
}

.event-card__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--soft-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.event-card__meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}

.event-card__date,
.event-card__time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--cool-grey);
}

.event-card__date svg,
.event-card__time svg {
    flex-shrink: 0;
    color: var(--neon-magenta);
}

.event-card__description {
    font-size: 0.9rem;
    color: var(--cool-grey);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.event-card__btn {
    padding: 9px 18px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Outline button variant */
.btn-outline {
    background: transparent;
    color: var(--cool-grey);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    border-color: var(--electric-blue);
    color: var(--electric-blue);
}

/* ===================================
   EVENTS PAGE — SECTION
   =================================== */

.events-section {
    padding: 80px 0 60px;
    background: var(--night-charcoal);
}

.events-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.events-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--cool-grey);
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* ===================================
   EVENTS PAGE — SUBMIT FORM
   =================================== */

.submit-event-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #1a1a1a 0%, var(--night-charcoal) 100%);
}

.submit-intro {
    text-align: center;
    color: var(--cool-grey);
    font-size: 1.05rem;
    max-width: 600px;
    margin: -30px auto 50px;
    line-height: 1.7;
}

.submit-event-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(0, 179, 255, 0.2);
}

.file-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px dashed var(--cool-grey) !important;
    border-radius: 5px;
    padding: 12px 15px !important;
    cursor: pointer;
    width: 100%;
    color: var(--soft-white);
}

.file-input:hover {
    border-color: var(--electric-blue) !important;
}

.field-hint {
    font-size: 0.8rem;
    color: var(--cool-grey);
    margin-top: 6px;
}

.poster-preview {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 200px;
    border: 2px solid rgba(0, 179, 255, 0.3);
}

.poster-preview img {
    width: 100%;
    display: block;
}

/* ===================================
   HOME PAGE — SPLIT SECTIONS
   =================================== */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

.split-section--reverse {
    direction: rtl;
}

.split-section--reverse > * {
    direction: ltr;
}

.split-section__image {
    position: relative;
    overflow: hidden;
}

.split-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.split-section:hover .split-section__image img {
    transform: scale(1.04);
}

.split-section__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226, 43, 138, 0.2), rgba(0, 179, 255, 0.1));
}

.split-section__content {
    background: #0e0e0e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    gap: 20px;
}

.split-section__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--soft-white);
    margin-bottom: 10px;
}

.split-section__content p {
    color: var(--cool-grey);
    font-size: 1.05rem;
    line-height: 1.8;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--electric-blue), var(--sunset-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   HOME PAGE — GALLERY
   =================================== */

.home-gallery {
    padding: 100px 0 80px;
    background: var(--night-charcoal);
}

.home-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

/* ===================================
   HOME PAGE — NEWSLETTER
   =================================== */

.newsletter-section {
    padding: 120px 0;
    background: linear-gradient(135deg,
        rgba(226, 43, 138, 0.15),
        rgba(123, 44, 191, 0.15),
        rgba(0, 179, 255, 0.15));
    text-align: center;
}

.newsletter-inner h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--soft-white);
    margin-bottom: 20px;
}

.newsletter-inner p {
    color: var(--cool-grey);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.newsletter-form {
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(0, 179, 255, 0.4);
}

.newsletter-input-group input[type="email"] {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: var(--soft-white);
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    min-width: 0;
}

.newsletter-input-group input[type="email"]::placeholder {
    color: var(--cool-grey);
}

.newsletter-input-group input[type="email"]:focus {
    background: rgba(0, 0, 0, 0.8);
}

.newsletter-input-group .btn {
    border-radius: 0;
    white-space: nowrap;
}

/* ===================================
   FOOTER NEW LAYOUT (footer-grid)
   =================================== */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    padding-top: 20px;
}

.footer-brand .logo-link {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline-text {
    color: var(--cool-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-links-col h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--soft-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    color: var(--cool-grey);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-links-col a:hover {
    color: var(--electric-blue);
}

.footer-links-col address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col address p {
    color: var(--cool-grey);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-hours {
    gap: 8px !important;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--cool-grey);
    gap: 15px;
}

/* ===================================
   LOGO LINK (shared across pages)
   =================================== */

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* ===================================
   PAGE HERO UPDATED (with blob bg)
   =================================== */

.page-hero {
    position: relative;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* ===================================
   ADMIN PAGE
   =================================== */

.admin-body {
    background: #0a0a0a;
}

/* --- PIN Gate --- */

.pin-gate {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #1a0a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.pin-gate__box {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(226, 43, 138, 0.3);
    border-radius: 16px;
    padding: 50px 40px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 60px rgba(226, 43, 138, 0.15);
}

.pin-gate__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.pin-gate__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--soft-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pin-gate__subtitle {
    color: var(--cool-grey);
    margin-bottom: 30px;
}

.pin-gate__form .form-group {
    margin-bottom: 20px;
}

.pin-gate__error {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 10px;
}

.pin-gate__back {
    display: block;
    margin-top: 20px;
    color: var(--cool-grey);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.pin-gate__back:hover {
    color: var(--electric-blue);
}

.pin-gate__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pin-gate__link {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cool-grey);
    font-size: 0.875rem;
    font-family: var(--font-body);
    padding: 0;
    transition: var(--transition-smooth);
}

.pin-gate__link:hover {
    color: var(--electric-blue);
}

.pin-gate__sep {
    color: var(--cool-grey);
    font-size: 0.875rem;
    opacity: 0.5;
}

/* OTP input styling */
#step2OTP {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    font-family: var(--font-heading);
}

/* --- Admin Header --- */

.admin-header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 43, 138, 0.2);
    z-index: 100;
    padding: 16px 20px;
}

.admin-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.admin-header__brand .logo-link {
    text-decoration: none;
}

.admin-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.admin-nav__btn {
    padding: 9px 20px;
    font-size: 0.85rem;
}

/* --- Admin Main --- */

.admin-main {
    padding: 40px 0 80px;
}

/* --- Stats --- */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 179, 255, 0.2);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.admin-stat:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 179, 255, 0.15);
}

.admin-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.admin-stat__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cool-grey);
}

/* --- Tabs --- */

.admin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.admin-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--cool-grey);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: -1px;
}

.admin-tab:hover {
    color: var(--soft-white);
}

.admin-tab.active {
    color: var(--electric-blue);
    border-bottom-color: var(--electric-blue);
}

/* --- Toolbar --- */

.admin-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

/* --- Table --- */

.admin-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.4);
}

.admin-table thead {
    background: rgba(0, 0, 0, 0.6);
}

.admin-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cool-grey);
    padding: 16px 20px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    color: var(--soft-white);
    font-size: 0.9rem;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr:hover {
    background: rgba(0, 179, 255, 0.04);
}

.row--archived td {
    opacity: 0.6;
}

.row--past td:not(.admin-table__actions) {
    color: var(--cool-grey);
}

.admin-table__thumb {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.admin-table__desc {
    color: var(--cool-grey);
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

.admin-table__time {
    color: var(--cool-grey);
    font-size: 0.8rem;
}

.admin-table__actions {
    white-space: nowrap;
}

.admin-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--cool-grey);
}

/* --- Action Buttons --- */

.admin-action-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: transparent;
    margin-right: 6px;
}

.admin-action-btn--edit {
    color: var(--electric-blue);
    border-color: var(--electric-blue);
}

.admin-action-btn--edit:hover {
    background: var(--electric-blue);
    color: var(--pure-black);
}

.admin-action-btn--archive {
    color: var(--gold-start);
    border-color: var(--gold-start);
}

.admin-action-btn--archive:hover {
    background: var(--gold-start);
    color: var(--pure-black);
}

.admin-action-btn--restore {
    color: #4caf50;
    border-color: #4caf50;
}

.admin-action-btn--restore:hover {
    background: #4caf50;
    color: var(--pure-black);
}

.admin-action-btn--delete {
    color: #ff4444;
    border-color: #ff4444;
}

.admin-action-btn--delete:hover {
    background: #ff4444;
    color: white;
}

/* --- Badges (admin) --- */

.admin-badge {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
}

.admin-badge--active  { background: rgba(76, 175, 80, 0.2); color: #4caf50; border: 1px solid #4caf50; }
.admin-badge--archived { background: rgba(158, 158, 158, 0.2); color: var(--cool-grey); border: 1px solid var(--cool-grey); }
.admin-badge--past    { background: rgba(255, 152, 0, 0.2); color: #ff9800; border: 1px solid #ff9800; }

.admin-badge--cat     { background: rgba(0, 179, 255, 0.15); color: var(--electric-blue); border: 1px solid rgba(0, 179, 255, 0.4); }
.admin-badge--drag    { background: rgba(226, 43, 138, 0.15); color: var(--neon-magenta); border: 1px solid rgba(226, 43, 138, 0.4); }
.admin-badge--karaoke { background: rgba(231, 184, 77, 0.15); color: var(--gold-start); border: 1px solid rgba(231, 184, 77, 0.4); }
.admin-badge--prive   { background: rgba(123, 44, 191, 0.15); color: var(--sunset-purple); border: 1px solid rgba(123, 44, 191, 0.4); }

/* ===================================
   ADMIN SECTION TABS
   =================================== */

.admin-section-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0;
}

.admin-section-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--cool-grey);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
}

.admin-section-tab:hover { color: var(--soft-white); }
.admin-section-tab.active {
    color: var(--neon-magenta);
    border-bottom-color: var(--neon-magenta);
}

/* ===================================
   ADMIN IMAGES GRID
   =================================== */

.admin-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.admin-image-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
}

.admin-image-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.admin-image-card__info {
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-image-card__label {
    font-size: 0.8rem;
    color: var(--soft-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-image-card__delete {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.admin-image-card__delete:hover {
    background: rgba(226,43,138,0.8);
    border-color: var(--neon-magenta);
}

/* ===================================
   MODAL (shared: edit + confirm)
   =================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal {
    background: #161616;
    border: 1px solid rgba(0, 179, 255, 0.25);
    border-radius: 14px;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 60px rgba(0, 179, 255, 0.1);
    position: relative;
}

.modal--confirm {
    max-width: 460px;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    background: #161616;
    z-index: 1;
}

.modal__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--soft-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.modal__close {
    background: transparent;
    border: none;
    color: var(--cool-grey);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: var(--transition-smooth);
}

.modal__close:hover {
    color: var(--neon-magenta);
}

.modal__form,
.modal__body {
    padding: 28px 32px;
}

.modal__actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    padding: 20px 32px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-poster-preview {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 150px;
    border: 2px solid rgba(0, 179, 255, 0.3);
}

.modal-poster-preview img {
    width: 100%;
    display: block;
}

/* Danger button */
.btn-danger {
    background: #ff4444;
    color: white;
    border: none;
}

.btn-danger:hover {
    background: #cc0000;
    transform: translateY(-1px);
}

/* ===================================
   RESPONSIVE — new sections
   =================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .split-section--reverse {
        direction: ltr;
    }

    .split-section__content {
        padding: 50px 30px;
    }

    .home-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 0;
        border: none;
    }

    .newsletter-input-group input[type="email"] {
        border: 1px solid rgba(0, 179, 255, 0.4);
        border-radius: 6px;
        width: 100%;
    }

    .newsletter-input-group .btn {
        border-radius: 6px;
        width: 100%;
        text-align: center;
    }

    .submit-event-form {
        padding: 30px 20px;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal__form,
    .modal__body {
        padding: 20px;
    }

    .modal__actions {
        padding: 16px 20px 20px;
        flex-direction: column;
    }

    .modal__actions .btn {
        width: 100%;
        text-align: center;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .home-gallery__grid {
        grid-template-columns: 1fr;
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .admin-stat__value {
        font-size: 2rem;
    }

    .blob-1, .blob-2, .blob-3 {
        width: 200px;
        height: 200px;
    }
}

/* === Page Hero === */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    overflow: hidden;
}

/* Per-page background images from Pencil design */
.page-hero--events {
    background-image: url('https://images.unsplash.com/photo-1609541828304-087547ae774a?w=1600&q=70');
}
.page-hero--services {
    background-image: url('https://images.unsplash.com/photo-1647543473544-5ec425900506?w=1600&q=70');
}
.page-hero--galerie {
    background-image: url('https://images.unsplash.com/photo-1766903907126-613cf79ff608?w=1600&q=70');
}
.page-hero--a-propos {
    background-image: url('https://images.unsplash.com/photo-1566767416641-25dc643f8b09?w=1600&q=70');
}
.page-hero--contact {
    background-image: url('https://images.unsplash.com/photo-1762425414357-1ac0d0510ada?w=1600&q=70');
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17,17,17,0.80) 0%,
        var(--hero-tint, rgba(226,43,138,0.13)) 50%,
        rgba(17,17,17,0.93) 100%
    );
}

/* Per-page tint colours */
.page-hero--events   { --hero-tint: rgba(226, 43,  138, 0.13); }
.page-hero--services { --hero-tint: rgba(123, 44,  191, 0.13); }
.page-hero--galerie  { --hero-tint: rgba(0,   179, 255, 0.13); }
.page-hero--a-propos { --hero-tint: rgba(231, 184,  77, 0.13); }
.page-hero--contact  { --hero-tint: rgba(226, 43,  138, 0.13); }

.page-hero-eyebrow {
    position: relative;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--hero-accent, var(--neon-magenta));
}

/* Per-page eyebrow accent colour */
.page-hero--events   .page-hero-eyebrow,
.page-hero--contact  .page-hero-eyebrow { color: var(--neon-magenta); }
.page-hero--services .page-hero-eyebrow { color: #7B2CBF; }
.page-hero--galerie  .page-hero-eyebrow { color: var(--electric-blue); }
.page-hero--a-propos .page-hero-eyebrow { color: var(--gold-start); }

.page-title {
    position: relative;
    z-index: 10;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #fff;
    line-height: 0.93;
}

.page-subtitle {
    position: relative;
    z-index: 10;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--cool-grey);
    letter-spacing: 1px;
}

/* === Service Detail === */
.service-detail {
    padding: 80px 0;
    background: var(--night-charcoal);
}

.service-detail.alt {
    background: #1a1a1a;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-content.reverse .service-detail-image {
    order: 2;
}

.service-detail-content.reverse .service-detail-text {
    order: 1;
}

.service-detail-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service-detail-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--electric-blue);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 179, 255, 0.5);
}

.service-detail.alt .service-detail-image::after {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 30px rgba(226, 43, 138, 0.5);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-detail-text h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--soft-white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.service-detail-text p {
    color: var(--cool-grey);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-detail-text h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--electric-blue);
    margin: 30px 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    color: var(--electric-blue);
}

.service-icon-large.magenta {
    color: var(--neon-magenta);
}

.service-icon-large.gold {
    color: var(--gold-start);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--soft-white);
    font-size: 1.05rem;
}

.service-features svg {
    color: var(--neon-magenta);
    flex-shrink: 0;
}

/* === Service Gallery === */
.service-gallery {
    margin-top: 60px;
}

.service-gallery h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--soft-white);
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-carousel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(0, 179, 255, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-carousel img:hover {
    transform: scale(1.05);
    border-color: var(--electric-blue);
    box-shadow: 0 0 30px rgba(0, 179, 255, 0.5);
}

/* === CTA Section === */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--neon-magenta) 0%, #c01870 100%);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    box-shadow: none;
}

/* === Full Gallery Page === */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--cool-grey);
    color: var(--cool-grey);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--electric-blue);
    color: var(--electric-blue);
    box-shadow: 0 0 15px rgba(0, 179, 255, 0.3);
}

.gallery-full {
    padding: 80px 0;
}

.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.gallery-masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    aspect-ratio: auto;
}

/* === About Page === */
.team-section {
    padding: 80px 0;
    background: var(--night-charcoal);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 30px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.team-member:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 0 30px rgba(0, 179, 255, 0.3);
    transform: translateY(-10px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--neon-magenta);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--soft-white);
    margin-bottom: 10px;
}

.team-role {
    color: var(--electric-blue);
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--cool-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 179, 255, 0.2);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 0 30px rgba(0, 179, 255, 0.15);
    transform: translateY(-4px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--gold-start);
}

.value-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--soft-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.value-description {
    color: var(--cool-grey);
    line-height: 1.6;
}

/* === Contact Page === */
.contact-content {
    padding: 80px 0;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 179, 255, 0.3);
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    color: var(--soft-white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-wrapper h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    color: var(--soft-white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item svg {
    color: var(--neon-magenta);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item-content h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--electric-blue);
    margin-bottom: 5px;
}

.contact-item-content p {
    color: var(--cool-grey);
    line-height: 1.6;
}

.contact-item-content a {
    color: var(--soft-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item-content a:hover {
    color: var(--electric-blue);
    text-decoration: underline;
}

.hours-note {
    color: var(--cool-grey);
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

.opening-hours {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(226, 43, 138, 0.3);
    margin-top: 30px;
}

.opening-hours h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--soft-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cool-grey);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
    color: var(--soft-white);
}

/* === Instagram Section === */
.instagram-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.instagram-section .instagram-handle {
    text-align: center;
    color: var(--cool-grey);
    margin-bottom: 40px;
}

.instagram-section .social-cta {
    text-align: center;
}

/* === Mission Statement === */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(226, 43, 138, 0.1), rgba(0, 179, 255, 0.1));
    text-align: center;
}

.mission-quote {
    max-width: 800px;
    margin: 0 auto;
}

.mission-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--soft-white);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.mission-quote cite {
    color: var(--electric-blue);
    font-size: 1.1rem;
    font-style: normal;
}

/* === About Story Section === */
.about-story {
    padding: 80px 0;
    background: var(--night-charcoal);
}

/* === About Stats === */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-stat-number span {
    color: var(--neon-magenta);
    -webkit-text-fill-color: var(--neon-magenta);
}

.about-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cool-grey);
}

/* === Team Intro === */
.team-intro {
    text-align: center;
    color: var(--cool-grey);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

/* === FAQ Section === */
.faq-section {
    padding: 80px 0;
    background: var(--night-charcoal);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

details.faq-item:last-child {
    border-bottom: none;
}

details.faq-item summary {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--electric-blue);
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--electric-blue);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 15px;
}

details.faq-item[open] summary::after {
    content: '−';
}

details.faq-item p {
    color: var(--cool-grey);
    line-height: 1.8;
    padding-bottom: 20px;
}

/* === Contact Follow-us heading === */
.contact-follow-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--soft-white);
    margin-bottom: 15px;
    margin-top: 40px;
}

/* === Map Section === */
.map-section {
    padding: 0;
}

.map-section .map-container {
    height: 450px;
    border-radius: 0;
    border: none;
}

.map-section .map-container iframe {
    height: 450px;
}

/* === Responsive Design for Subpages === */
@media (max-width: 768px) {
    .service-detail-content,
    .service-detail-content.reverse,
    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-masonry {
        column-count: 2;
    }

    .page-hero {
        margin-top: 60px;
        min-height: 300px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        column-count: 1;
    }

    .gallery-filters {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}
