/* ==========================================================================
   QUEERCON OFFICIAL DESIGN SYSTEM (FIGMA ACCURATE & FULLY RESPONSIVE)
   No Page Builders - Vanilla Custom CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & VARIABLES (Accessible Palette)
   -------------------------------------------------------------------------- */
:root {
  --qc-text-dark: #240035;        /* Main Dark Purple / Text & Dark Sections */
  --qc-bg-light: #fbfbfe;         /* Off-White Page Background */
  --qc-pink-primary: #f97bc0;     /* Light Pink Accent / Subtitles */
  --qc-lavender: #ddc7e1;         /* Lavender Borders & Secondary Text */
  --qc-hot-pink: #f22696;         /* Hot Pink CTA, Pill Buttons & Time Badges */
  --qc-white: #ffffff;            /* Clean White */
  --qc-light-pink: #fce8f3;
}

/* --------------------------------------------------------------------------
   2. GLOBAL BASE STYLES & RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--qc-bg-light);
  color: var(--qc-text-dark);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   3. REUSABLE UI COMPONENTS (Pill Buttons & Badges)
   -------------------------------------------------------------------------- */
.qc-pill-btn,
a.qc-pill-btn,
.qc-btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--qc-hot-pink);
  color: var(--qc-white) !important;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  max-width: 100%;
  text-align: center;
}

.qc-pill-btn:hover,
a.qc-pill-btn:hover,
.qc-btn-pill:hover {
  background-color: #d81b82;
  transform: translateY(-2px);
}

/* Uniform Time & Room Badges */
.badge-time,
.qc-badge-time,
.qc-event-time,
.qc-filter-btn{
  background-color: var(--qc-hot-pink);
  color: var(--qc-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.82rem;
  white-space: nowrap;
  display: inline-block;
  min-width: 95px;
  text-align: center;
}

.qc-badge-tag {
  background-color: var(--qc-hot-pink);
  color: var(--qc-white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-block;
}

.qc-badge-secondary {
  background-color: var(--qc-pink-primary);
  color: var(--qc-text-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   4. STICKY HEADER & NAVIGATION SYSTEM
   -------------------------------------------------------------------------- */
.qc-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  padding: 12px 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.qc-header-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  gap: 15px;
}

.qc-header-logo,
.qc-header-socials {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.qc-header-logo img {
  height: 28px;
  width: auto;
}

.qc-header-socials a,
.qc-header-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--qc-text-dark);
  border: 1.5px solid transparent;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.qc-header-socials a:hover,
.qc-header-share-btn:hover {
  transform: translateY(-2px) scale(1.08);
  border: 2px solid var(--qc-hot-pink);
}

.qc-header-socials a:focus-visible,
.qc-header-share-btn:focus-visible {
  outline: 2px solid var(--qc-hot-pink);
  outline-offset: 3px;
}

.qc-header-socials a:active,
.qc-header-share-btn:active {
  transform: translateY(0) scale(0.95);
}

/* Wrapper για Socials + Hamburger Toggle */
.qc-header-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger Toggle Button */
.qc-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--qc-text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}

.qc-mobile-toggle .icon-close {
  display: none;
}

.qc-mobile-toggle.is-active .icon-open {
  display: none;
}

.qc-mobile-toggle.is-active .icon-close {
  display: inline-block;
  color: var(--qc-hot-pink);
}

.qc-header-nav {
  width: auto;
  max-width: 100%;
}

.qc-header-nav a {
  color: var(--qc-text-dark) !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  background: transparent !important;
  border: none !important;
  padding: 6px 0 !important;
  position: relative;
  transition: color 0.25s ease;
}

.qc-header-nav a:hover,
.qc-header-nav a.active,
.qc-header-nav li.active > a,
.qc-header-nav li.current > a {
  color: var(--qc-hot-pink) !important;
  font-weight: 800 !important;
}

/* Sticky State (Global) */
.qc-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fce8f3 !important;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(56, 0, 56, 0.08);
  animation: slideDown 0.35s ease-out forwards;
}

.qc-header.is-sticky .qc-header-container {
  justify-content: space-between;
}

.qc-header.is-sticky .qc-header-logo,
.qc-header.is-sticky .qc-header-socials {
  display: flex;
  align-items: center;
  opacity: 1;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Parent Dropdown Setup */
.qc-nav-list .qc-has-dropdown {
  position: relative; 
}

.qc-nav-list .qc-has-dropdown > a[href="#"] {
  cursor: default;
}

/* Smooth Arrow Animation */
.qc-dropdown-arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.25s ease;
}

.qc-has-dropdown.open .qc-dropdown-arrow {
  transform: rotate(180deg);
}

/* ==========================================================================
   DESKTOP NAVIGATION (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
  .qc-header-nav ul,
  .qc-header-nav .mod-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    background: none !important;
    white-space: nowrap;
  }

  .qc-header-nav li {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
  }

  /* Desktop Dropdown Menu (Floating Bubble) */
  .qc-nav-list .qc-dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--qc-bg-light) !important;
    min-width: 200px;
    padding: 20px !important;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 10px rgb(36 0 53 / 60%);
    border-radius: 8px;
  }

  .qc-nav-list .qc-has-dropdown.open > .qc-dropdown-menu {
    display: flex !important;
    z-index: 1000;
    flex-direction: column;
    gap: 5px !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .qc-header-nav .qc-dropdown-menu a {
    padding: 0px !important;
  }

  .qc-nav-list .qc-dropdown-menu li {
    margin-bottom: 5px;
  }

  .qc-nav-list .qc-dropdown-menu li:last-child {
    margin-bottom: 0;
  }

  body:has(#eventsNav) .qc-header.is-sticky {
    box-shadow: none !important;
  }
}

/* ==========================================================================
   MOBILE & TABLET NAVIGATION (< 992px)
   ========================================================================== */
@media (max-width: 991px) {
  .qc-header-container {
    justify-content: space-between;
  }

  /* Εμφάνιση Logo & Socials πάντα στο Mobile Header */
  .qc-header-socials {
    display: flex;
    opacity: 1;
  }

  .qc-mobile-toggle {
    display: block; /* Εμφάνιση Hamburger */
  }

  /* Mobile Nav Drawer Container */
  .qc-header-nav {
    display: none; /* Κρυμμένο αρχικά */
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fce8f3;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--qc-hot-pink);
  }

  /* Εμφάνιση Drawer όταν το μενού είναι ανοιχτό (.is-open) */
  .qc-header-nav.is-open {
    display: block;
    animation: fadeInDown 0.3s ease forwards;
  }

  .qc-header-nav ul,
  .qc-header-nav .mod-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
    width: 100%;
  }

  .qc-header-nav li {
    width: 100%;
  }

  .qc-header-nav a {
    display: block;
    width: 100%;
    font-size: 1rem !important;
    padding: 8px 0 !important;
  }

  /* Mobile Inline Dropdown (Accordion Style) */
  .qc-nav-list .qc-dropdown-menu {
    display: none !important;
    position: static !important; /* Μπαίνει στη ροή του layout */
    width: 100%;
    background: transparent !important;
    box-shadow: none !important;
    padding: 10px 0 0 15px !important; /* Indent για τα sub-items */
    margin: 0;
  }

  /* Όταν το dropdown είναι ανοιχτό στο mobile */
  .qc-nav-list .qc-has-dropdown.open > .qc-dropdown-menu {
    display: flex !important;
    flex-direction: column;
    gap: 10px !important;
  }

  .qc-header-nav .qc-dropdown-menu a {
    font-size: 0.9rem !important; /* Ελαφρώς πιο μικρό από τα main menu items */
    opacity: 0.9;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   5. SHARE MODAL OVERLAY & POPUP STYLING
   -------------------------------------------------------------------------- */
.qc-share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(56, 0, 56, 0.75);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 15px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.qc-share-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.qc-share-modal-card {
  background-color: var(--qc-bg-light);
  border: 2px solid var(--qc-lavender);
  border-radius: 24px;
  padding: 30px 20px 20px 20px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.qc-share-modal-overlay.is-active .qc-share-modal-card {
  transform: translateY(0) scale(1);
}

.qc-share-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--qc-text-dark);
  cursor: pointer;
  transition: color 0.2s ease;
}

.qc-share-close:hover {
  color: var(--qc-hot-pink);
}

.qc-share-title {
  color: var(--qc-text-dark);
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.qc-share-subtitle {
  color: var(--qc-text-dark);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.qc-share-social-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.qc-share-item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--qc-text-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.qc-share-item:hover {
  background-color: var(--qc-hot-pink);
  transform: translateY(-3px);
  color: #ffffff;
}

.qc-share-copy-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid var(--qc-lavender);
  border-radius: 50px;
  padding: 4px 6px 4px 14px;
}

.qc-share-copy-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.8rem;
  color: var(--qc-text-dark);
}

.qc-pill-btn-small {
  background-color: var(--qc-hot-pink);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.qc-pill-btn-small:hover {
  background-color: var(--qc-pink-primary);
  color: var(--qc-text-dark);
}

.qc-copy-feedback {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--qc-hot-pink);
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.qc-copy-feedback.is-visible {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   6. HERO BANNER SECTION (FLUID & SCROLL REVEAL)
   -------------------------------------------------------------------------- */
.qc-hero-banner-section {
  position: relative;
  background-color: var(--qc-bg-light);
  padding: 40px 0px 0px 0px;
  text-align: center;
  width: 100%;
}

.qc-hero-sticky-media {
  position: sticky;
  top: 80px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 20px 0;
  pointer-events: none;
}

.qc-hero-img-box {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(56, 0, 56, 0.12);
  border: 3px solid var(--qc-white);
  transform-origin: center top;
  animation: shrinkHeroImg linear forwards;
  animation-timeline: scroll(root);
  animation-range: 0px 320px;
}

.qc-hero-reveal-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px;
}

@keyframes shrinkHeroImg {
  to {
    transform: scale(0.68);
    opacity: 0.7;
    filter: blur(4px);
  }
}

.qc-hero-banner-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: -30px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(251, 251, 254, 0.94);
  backdrop-filter: blur(8px);
  padding: 2rem 1.2rem;
  border-radius: 24px;
  border: 2px solid var(--qc-pink-primary);
}

.qc-hero-logo-img {
  max-width: 380px;
  width: 100%;
  height: auto;
}

.qc-hero-logo-wrapper {
  display: table;
  margin: 0 auto;
  max-width: 100%;
}

.qc-hero-dynamic-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.qc-hero-dates {
  color: var(--qc-text-dark);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 1px;
  margin: 10px 0 0 0;
}

.qc-hero-venue {
  color: var(--qc-text-dark);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  margin: 5px 0 0 0;
}

.qc-hero-tagline {
  color: var(--qc-pink-primary);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0px 0 0 0;
}

.qc-btn-calendar {
  background-color: var(--qc-hot-pink) !important;
  color: var(--qc-white) !important;
  font-family: inherit;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(242, 38, 150, 0.35);
  transition: all 0.25s ease;
  max-width: 100%;
}

.qc-btn-calendar:hover {
  background-color: #d81b82 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 38, 150, 0.5);
}

@supports not (animation-timeline: scroll()) {
  .qc-hero-sticky-media {
    position: relative;
    top: 0;
  }
  .qc-hero-banner-container {
    margin-top: 0;
    background: transparent;
    border: 0px;
  }
}

/* --------------------------------------------------------------------------
   7. HERO PARALLAX LAYER CLASSES
   -------------------------------------------------------------------------- */
.qc-parallax-wrapper {
  width: 100%;
  max-width: 100%;
  height: clamp(300px, 60vh, 900px);
  border-radius: 20px;
  overflow: hidden;
  margin: 25px auto 0;
  box-shadow: 0 12px 30px rgba(56, 0, 56, 0.12);
  border: 3px solid var(--qc-white);
  position: relative;
}

.qc-parallax-img {
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* --------------------------------------------------------------------------
   8. ABOUT SECTION & BOTTOM RIBBON BAR
   -------------------------------------------------------------------------- */
.qc-about-section {
  background-color: var(--qc-bg-light);
}

.qc-about-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.qc-about-content {
  color: var(--qc-text-dark);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 30px;
}

.qc-about-content p {
  margin-bottom: 15px;
}

.qc-about-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0px;
}

.qc-info-ribbon {
  background-color: var(--qc-lavender);
  color: var(--qc-text-dark);
  padding: 30px 20px;
  width: 100%;
}

.qc-info-ribbon-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. PROGRAM / SCHEDULE SECTION (DARK BACKGROUND #240035)
   -------------------------------------------------------------------------- */
.qc-schedule-section {
  background-color: var(--qc-text-dark);
  color: var(--qc-white);
  padding: 80px 20px;
  width: 100%;
}

.qc-schedule-container {
  max-width: 980px;
  margin: 0 auto;
}

.qc-schedule-main-title {
  color: var(--qc-white);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 35px;
  text-transform: uppercase;
  text-align: center;
}

.qc-schedule-top-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.qc-block-title, 
.qc-day-title {
  color: var(--qc-pink-primary);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  text-align: left;
}

.qc-hours-badge {
  background-color: var(--qc-hot-pink);
  color: var(--qc-white);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.qc-hours-editor-content p {
  margin: 0;
  line-height: 1.3;
  font-size: 1rem;
  font-weight: 700;
}

.qc-allday-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qc-allday-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.qc-pink-dot {
  width: 12px;
  height: 12px;
  background-color: var(--qc-pink-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.qc-days-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.qc-day-column {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(221, 199, 225, 0.15);
  border-radius: 16px;
  padding: 20px;
}

.qc-day-events {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qc-schedule-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.qc-schedule-header {
  flex-shrink: 0;
}

.qc-schedule-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.qc-schedule-title,
.qc-schedule-title a{
  color: var(--qc-white);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-decoration:none;
}

.qc-schedule-venue {
  color: var(--qc-lavender);
  font-size: 0.82rem;
  font-weight: 400;
}

.qc-schedule-title a:hover {
  text-shadow:0 4px 15px var(--qc-hot-pink);
  transition: opacity 0.3s ease;
}
/* --------------------------------------------------------------------------
   10. ARTISTS ALLEY (CIRCULAR FLEX/GRID LAYOUT)
   -------------------------------------------------------------------------- */
.qc-artists-section {
  background-color: var(--qc-bg-light);
  padding: 80px 20px;
  text-align: center;
}

.qc-artists-container {
  max-width: 980px;
  margin: 0 auto;
}

.qc-artists-main-title {
  color: var(--qc-text-dark);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.qc-artists-subtitle {
  color: var(--qc-text-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.qc-artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 25px 15px;
  justify-items: center;
}

.qc-artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease;
  width: 100%;
}

.qc-artist-card:hover {
  transform: translateY(-4px);
}

.qc-artist-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.qc-avatar-wrapper {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--qc-lavender);
  box-shadow: 0 4px 10px rgba(56, 0, 56, 0.06);
  background-color: var(--qc-lavender);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s ease;
}

.qc-artist-card:hover .qc-avatar-wrapper {
  border-color: var(--qc-hot-pink);
}

.qc-artist-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qc-artist-name {
  color: var(--qc-text-dark);
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
}

.qc-artists-badge-room {
  display: inline-block;
  background-color: var(--qc-hot-pink);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.qc-artists-badge-floor {
  display: inline-block;
  background-color: var(--qc-light-pink);
  color: var(--qc-text-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   11. EXHIBITS / ΕΚΘΕΣΕΙΣ & SCREENINGS / ΠΡΟΒΟΛΕΣ
   -------------------------------------------------------------------------- */
.qc-content-section {
  background-color: var(--qc-bg-light);
  padding: 50px 20px;
}

.qc-content-container {
  max-width: 980px;
  margin: 0 auto;
}

.qc-section-title {
  color: var(--qc-text-dark);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}

.qc-article-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: center;
  margin-bottom: 35px;
  text-align: left;
}

.qc-article-row.reverse {
  grid-template-columns: 320px 1fr;
}

.qc-article-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(56, 0, 56, 0.08);
  width: 100%;
}

.qc-article-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.qc-article-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.qc-article-title {
  color: var(--qc-text-dark);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.qc-article-text {
  color: var(--qc-text-dark);
  font-size: 0.92rem;
  line-height: 1.6;
}

.qc-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.qc-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.qc-card-item {
  background: var(--qc-white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(56, 0, 56, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------------------------
   12. DYNAMIC PARTNERS & SPONSORS
   -------------------------------------------------------------------------- */
.qc-partners-section {
  background-color: var(--qc-text-dark);
  padding: 80px 20px;
  width: 100%;
}

.qc-partners-container {
  max-width: 1050px;
  margin: 0 auto;
}

.qc-partners-white-card {
  background-color: var(--qc-white);
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.qc-partner-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qc-partner-group-title {
  color: var(--qc-text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  opacity: 0.8;
}

.qc-partner-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 30px;
  width: 100%;
}

.qc-partner-logo {
  max-width: 120px;
  max-height: 45px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   13. FOOTER CREDITS SECTION
   -------------------------------------------------------------------------- */
.qc-footer-section {
  background-color: var(--qc-text-dark);
  color: var(--qc-white);
  padding: 0px 20px 30px 20px;
  width: 100%;
}

.qc-footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qc-footer-logo-wrapper {
  margin-bottom: 35px;
}

.qc-footer-logo-img {
  max-width: 200px;
  height: auto;
}

.qc-footer-credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  width: 100%;
  margin-bottom: 40px;
}

.qc-footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  margin: 20px auto;
}

.qc-footer-credits-flex .qc-footer-col {
  flex-direction: row;
  flex-wrap:wrap;
  justify-content:center;
  row-gap:16px;
  column-gap:25px;
}

.qc-credit-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.qc-credit-role {
  color: var(--qc-lavender);
  font-size: 0.78rem;
  font-weight: 400;
}

.qc-credit-name {
  color: var(--qc-white);
  font-size: 0.85rem;
  font-weight: 700;
}

.qc-footer-contact {
  width: 100%;
  text-align: right;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--qc-lavender);
  border-top: 1px solid rgba(221, 199, 225, 0.12);
  padding-top: 20px;
}

.qc-footer-contact a {
  color: var(--qc-white);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.qc-footer-contact a:hover {
  color: var(--qc-pink-primary);
}

/* --------------------------------------------------------------------------
   14. MEDIA QUERIES (BREAKPOINT MANAGEMENT)
   -------------------------------------------------------------------------- */

/* Tablet Breakpoint (max-width: 991px) - Dynamic Mobile Navigation Overlay */
@media (max-width: 991px) {
  .qc-hero-banner-section {
   padding: 50px 0px 0px 0px;
 }  
  
  .qc-header-container {
    position: relative;
    justify-content: space-between;
    padding: 10px 20px;
  }

  /* Hamburger Toggle Display */
  .qc-mobile-toggle {
    display: inline-flex;
    align-items: center;
    width: 108px;
  }

  .qc-header-socials {
    display: flex;
    align-items: center;
    opacity: 1;
  }
  
  /* Mobile Dropdown Menu Drawer */
  .qc-header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--qc-bg-light);
    border-bottom: 2px solid var(--qc-lavender);
    box-shadow: 0 12px 30px rgba(56, 0, 56, 0.18);
    padding: 0;
    
    /* Smooth Transition & Drawer Controls */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.25s ease-in-out, 
                visibility 0.25s ease-in-out;
  }

  /* Mobile Menu Open State */
  .qc-header-nav.is-open {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
    padding: 20px 0;
  }

  .qc-header-nav ul,
  .qc-header-nav .mod-menu {
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 0 !important;
    margin: 0 !important;
    white-space: normal !important;
  }

  .qc-header-nav a {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    display: block !important;
    padding: 10px 20px !important;
    width: 100% !important;
    text-align: center !important;
  }

  .qc-grid-3col,
  .qc-footer-credits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .qc-article-row {
    grid-template-columns: 1fr 260px;
  }
  
  .qc-article-row.reverse {
    grid-template-columns: 260px 1fr;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .qc-parallax-wrapper {
    height: 250px;
    margin: 50px auto;
  }

  .qc-parallax-img {
    background-attachment: scroll;
  }

  .qc-about-container {
    padding: 30px 20px 80px;
  }
  
  .qc-days-grid,
  .qc-grid-2col,
  .qc-grid-3col,
  .qc-footer-credits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .qc-article-row,
  .qc-article-row.reverse {
    grid-template-columns: 1fr;
  }

  .qc-article-row.reverse .qc-article-img-wrapper {
    order: -1;
  }

  .qc-article-img {
    height: 190px;
  }

  .qc-footer-contact {
    text-align: center;
  }

  .qc-artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 20px 10px;
  }

  .qc-avatar-wrapper {
    width: 75px;
    height: 75px;
  }

  .qc-artist-name {
    font-size: 0.78rem;
  }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .qc-hero-banner-container {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }

  .qc-about-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .qc-pill-btn,
  a.qc-pill-btn,
  .qc-btn-pill {
    width: 80%;
    padding: 12px 20px;
    display:table;
    marign:0 auto;
  }

  .qc-info-ribbon-container {
    flex-direction: column;
    gap: 12px;
  }

  .qc-day-events {
    gap:30px;
  }
  
  .qc-schedule-card {
    flex-direction: column;
    gap: 15px;
  }

  .qc-partners-white-card {
    padding: 20px 12px;
  }

  .qc-partner-logo {
    max-width: 90px;
    max-height: 35px;
  }

  .qc-share-copy-box {
    flex-direction: column;
    border-radius: 16px;
    padding: 8px;
  }

  .qc-share-copy-box input {
    text-align: center;
    padding: 4px 0;
  }

  .qc-pill-btn-small {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   15. ACCESSIBILITY & UTILITY ENHANCEMENTS (WCAG 2.1 COMPLIANT)
   -------------------------------------------------------------------------- */

/* Skip to Content Link */
.qc-skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--qc-hot-pink);
  color: var(--qc-white) !important;
  padding: 12px 24px;
  border-radius: 0 0 12px 12px;
  font-weight: 800;
  text-decoration: none;
  z-index: 10001;
  transition: top 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.qc-skip-link:focus {
  top: 0;
  outline: 3px solid var(--qc-white);
}

/* Global Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--qc-hot-pink) !important;
  outline-offset: 4px !important;
  border-radius: 4px;
}

/* Reduced Motion Preference Support */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .qc-hero-img-box {
    animation: none !important;
  }
}

/* Screen Reader Only Utility Class */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* --------------------------------------------------------------------------
   16. EVENTS INTERNAL PAGE
   -------------------------------------------------------------------------- */

.qc-events-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0rem 1.5rem 2.5rem;
  background-color: var(--qc-bg-light);
}

.qc-inner-module-top,
.qc-inner-content-body {
  position: relative;
    background-color: var(--qc-bg-light);
    padding: 40px 0px 0px 0px;
    text-align: center;
    width: 100%;
}

/* Events Navigation Filter Bar */
.qc-events-filter-wrapper {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.qc-events-filter-wrapper.is-sticky {
    position: fixed;
    top: 1rem;
    left: 0;
    background-color: var(--qc-light-pink) !important;
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(56, 0, 56, 0.08);
    animation: slideDown 0.35s ease-out forwards;
    width: 100%;
}

.qc-events-filter-nav {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content:center;
  align-content:center;
}

.qc-filter-btn {
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--qc-hot-pink);
}

.qc-filter-btn.active,
.qc-filter-btn:hover {
  background: #fff;
  color: var(--qc-text-dark);
}

/* Event Items Hiding Logic */
.qc-event-card {
    text-align: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  margin: 20px auto;
  align-items:center;
}

.qc-event-card.is-hidden {
  display: none !important;
}

.qc-event-card-nmg {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  margin:20px auto;
}

.qc-event-card-nmg.is-hidden {
  display: none !important;
}

.qc-event-info {
  direction: ltr;
}

.qc-event-venue {
  display: inline-block;
  background-color: var(--qc-light-pink);
  color: var(--qc-text-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .qc-event-card {
    grid-template-columns: 1fr 1fr;
    gap:3.5rem;
  }

  .qc-event-card:nth-child(even) {
     direction:rtl;
   }

  .qc-event-card-nmg:nth-child(even) {
    text-align: right;
  }

}

@media (max-width:991px) {
  .qc-event-content h3,
  .qc-event-intro p {
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
  }

  .qc-events-filter-wrapper.is-sticky {
    position: fixed;
    bottom: 0;
    right: 0;
    top: 4rem;
    left: 1rem;
    z-index: 9999;
    /* Μετατροπή σε κυκλικό FAB */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--qc-hot-pink) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.8rem;
  } 
  
  .qc-events-filter-wrapper.is-sticky > * {
    display: none;
  }

  /* Custom Εικονίδιο (όταν είναι κλειστό) */
  .qc-events-filter-wrapper.is-sticky::before {
    content: '';
    width: 30px;
    height: 35px;
    /* Βάλε το δικό σου SVG ή PNG URL εδώ */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  /* Όταν ΑΝΟΙΓΕΙ το FAB */
  .qc-events-filter-wrapper.is-sticky.is-open {
    width: 50vw;
    height: 23vh;
    border-radius: 16px;
    padding: 12px !important;
    flex-direction: column;
    background-color: var(--qc-light-pink) !important;
  }

  /* Εμφάνιση των κουμπιών όταν ανοίγει */
 .qc-events-filter-wrapper.is-sticky.is-open > * {
    display: flex;
  }

  /* Εξαφάνιση του εικονιδίου όταν το μενού είναι ανοιχτό */
  .qc-events-filter-wrapper.is-sticky.is-open::before {
    display: none;
  }}

/* --------------------------------------------------------------------------
   17. ARCHIVES INTERNAL PAGE
   -------------------------------------------------------------------------- */
.qc-exhibit-article {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background-color: var(--qc-bg-light);
}

.qc-exhibit-title {
  color: var(--qc-text-dark);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}

.qc-exhibit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* 2 Στήλες σε Tablet & Desktop */
@media (min-width: 768px) {
  .qc-exhibit-grid {
    grid-template-columns: 1fr 1fr; /* 50% - 50% split */
    gap: 3.5rem;
  }
}

/* Αριστερή Στήλη - Εικόνα */
.qc-exhibit-media img,
.qc-event-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgb(36 0 53 / 60%);
}

/* Δεξιά Στήλη - Κείμενο Editor */
.qc-exhibit-content {
  text-align:left;
}

.qc-exhibit-content p {
  margin-bottom: 1.2rem;
}

.qc-exhibit-content p:last-child {
  margin-bottom: 0;
}