/* ============================================
   Workshop Page - Redesigned Version
   Modern, Clean, Professional Design
   ============================================ */

/* ===== Font Import ===== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap");

/* ===== Workshop Level Colors ===== */
:root {
  --level-fundamentals: #9dc3e7;
  --level-advanced: #cceaf4;
  --level-expert: #ffc000;
}

/* ===== CSS EXCLUSION LIST ===== */
#globalWrapper > div[data-l="big_menu"],
#globalWrapper > div[data-l="big_menu"] *,
.contactus,
.contactus *,
#footerWrapper,
#footerWrapper * {
  /* Workshop CSS will not override these */
}

/* Hide Let's Talk and Go Up buttons */
.contactus,
#go_up,
.icon-chevron-up {
  display: none !important;
}

/* ===== Base Workshop Styles ===== */
.workshop-page-header,
.workshop-main-content {
  font-size: 16px;
  line-height: 1.6;
}

.workshop-main-content p {
  font-size: 16px;
  line-height: 1.7;
}

.workshop-main-content ul li {
  font-size: 16px;
  line-height: 1.7;
}

/* ===== Workshop Page Header ===== */
.workshop-page-header {
  background-color: #6bb8be;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 40% 20%, rgba(0, 0, 0, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.02) 40px,
      rgba(255, 255, 255, 0.02) 80px
    ),
    linear-gradient(135deg, #6bb8be 0%, #5aa8ae 50%, #4a9da3 100%);
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
}

/* Header Top Navigation */
.workshop-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.workshop-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.workshop-back-link:hover {
  background: rgba(255, 255, 255, 0.22);
  color: white;
  transform: translateX(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.workshop-back-link i {
  font-size: 12px;
}

/* Workshop Level Badge */
.workshop-level-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: #2c3e50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.workshop-level-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.workshop-level-fundamentals .workshop-level-badge::before {
  background: var(--level-fundamentals);
  box-shadow: 0 0 0 3px rgba(157, 195, 231, 0.2);
}

.workshop-level-advanced .workshop-level-badge::before {
  background: var(--level-advanced);
  box-shadow: 0 0 0 3px rgba(204, 234, 244, 0.2);
}

.workshop-level-expert .workshop-level-badge::before {
  background: var(--level-expert);
  box-shadow: 0 0 0 3px rgba(255, 192, 0, 0.2);
}

.workshop-level-badge i {
  display: none;
}

/* Language Picker in Header */
.workshop-lang-picker {
  display: flex;
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 4px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.workshop-lang-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 42px;
  height: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.workshop-lang-picker.active-de .workshop-lang-slider {
  transform: translateX(44px);
}

.workshop-lang-btn {
  width: 42px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.workshop-lang-btn:hover {
  color: white;
  text-decoration: none;
}

.workshop-lang-btn.active {
  color: #2c3e50;
}

/* Header Content */
.workshop-header-content {
  position: relative;
  z-index: 2;
}

.workshop-header-content h1 {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.workshop-header-content .workshop-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
}

/* Header Actions Row */
.workshop-header-actions {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.workshop-header-actions-left {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Training Guide Button */
.workshop-training-guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.workshop-training-guide-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

.workshop-training-guide-btn i {
  font-size: 16px;
}

/* Register Button in Header */
.workshop-register-btn-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 64px;
  background: white;
  color: #6bb8be;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.workshop-register-btn-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(107, 184, 190, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.workshop-register-btn-header:hover::before {
  width: 400px;
  height: 400px;
}

.workshop-register-btn-header:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.workshop-register-btn-header i {
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.workshop-register-btn-header span {
  position: relative;
  z-index: 1;
}

/* ===== Sticky Subnavigation ===== */
.workshop-sticky-subnav {
  position: fixed;
  top: 106px;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(30, 30, 35, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  transform: translateY(-100px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease,
    top 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.workshop-sticky-subnav.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.workshop-sticky-subnav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.workshop-sticky-left {
  display: flex;
  gap: 15px;
  align-items: center;
}

.workshop-sticky-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.workshop-sticky-subnav .workshop-back-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  font-size: 13px;
  padding: 6px 12px;
}

.workshop-sticky-subnav .workshop-back-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.workshop-sticky-subnav .workshop-training-guide-btn {
  font-size: 13px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.workshop-sticky-subnav .workshop-training-guide-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.workshop-sticky-subnav .workshop-lang-picker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.workshop-sticky-subnav .workshop-register-btn-header {
  font-size: 14px;
  padding: 8px 18px;
}

/* ===== Main Content Area ===== */
.workshop-main-content {
  background: white;
  padding: 0;
}

/* Section Headers */
.workshop-section-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 50px 0 30px 0;
  padding-bottom: 15px;
  position: relative;
}

.workshop-section-header:has(.workshop-expand-all-btn) {
  justify-content: space-between;
}

.workshop-section-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(200, 200, 200, 0.6) 0%,
    rgba(200, 200, 200, 0) 100%
  );
}

.workshop-section-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.workshop-section-header i {
  color: #6bb8be;
  font-size: 26px;
  width: 34px;
  text-align: center;
}

.workshop-section-header h3 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c3e50;
}

/* Expand/Collapse All Button */
.workshop-expand-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.workshop-expand-all-btn:hover {
  border-color: #6bb8be;
  color: #6bb8be;
  background: rgba(107, 184, 190, 0.05);
}

.workshop-expand-all-btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.workshop-expand-all-btn.all-expanded {
  border-color: #6bb8be;
  color: #6bb8be;
  background: rgba(107, 184, 190, 0.08);
}

.workshop-expand-all-btn.all-expanded i {
  transform: rotate(180deg);
}

/* Glassmorphism Goals Cards - Flexible Grid */
.workshop-goals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.workshop-goal-card {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 250px;
  background: white;
  border-radius: 16px;
  padding: 30px 24px;
  border: 2px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.workshop-goal-card:hover {
  border-color: #6bb8be;
  box-shadow: 0 8px 24px rgba(107, 184, 190, 0.15);
  transform: translateY(-4px);
}

.workshop-goal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #6bb8be 0%, #5aa8ae 100%);
}

.workshop-goal-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6bb8be 0%, #5aa8ae 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: white;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(107, 184, 190, 0.3);
}

.workshop-goal-card-text {
  color: #2c3e50;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

/* Two Column Layout for Prerequisites/Participants */
.workshop-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.workshop-prereq-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  border: 2px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.workshop-prereq-card:hover {
  border-color: rgba(107, 184, 190, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.workshop-prereq-card h4 {
  color: #2c3e50;
  font-weight: 700;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8e8e8;
}

.workshop-prereq-card h4 i {
  color: #6bb8be;
  font-size: 24px;
  width: 30px;
  text-align: center;
}

.workshop-prereq-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workshop-prereq-card ul li {
  margin-bottom: 0;
  padding: 12px 0 12px 32px;
  color: #2c3e50;
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.workshop-prereq-card ul li:last-child {
  border-bottom: none;
}

.workshop-prereq-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #6bb8be;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(107, 184, 190, 0.15);
}

/* ===== Collapsible Content (Accordion) ===== */
.workshop-accordion-item {
  margin-bottom: 15px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.workshop-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.workshop-accordion-header:hover {
  background: #e9ecef;
}

.workshop-accordion-header.active {
  background: linear-gradient(
    135deg,
    rgba(107, 184, 190, 0.1) 0%,
    rgba(107, 184, 190, 0.05) 100%
  );
  border-bottom: 1px solid #e8e8e8;
}

.workshop-accordion-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.workshop-accordion-icon {
  color: #6bb8be;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.workshop-accordion-header.active .workshop-accordion-icon {
  transform: rotate(180deg);
}

.workshop-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.workshop-accordion-content.active {
  max-height: 2000px;
}

.workshop-accordion-body {
  padding: 25px;
}

.workshop-accordion-body ul {
  margin: 0;
  padding-left: 25px;
}

.workshop-accordion-body ul li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

/* Registration Section */
.workshop-registration-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  border: 1px solid #dee2e6;
}

.workshop-registration-section h3 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.workshop-registration-section h3 i {
  color: #6bb8be;
}

.workshop-registration-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 16px;
}

.workshop-registration-section a {
  color: #6bb8be;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.workshop-registration-section a:hover {
  border-bottom-color: #6bb8be;
}

/* ===== Sidebar ===== */
.workshop-sidebar {
  position: relative;
}

.workshop-sidebar-sticky-top {
  position: sticky;
  top: 20px;
  margin-bottom: 20px;
  z-index: 10;
}

/* Register Button - Sidebar (HIDDEN - using header version only) */
.workshop-register-btn {
  display: none;
}

/* Sidebar Cards */
.workshop-sidebar-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
}

.workshop-sidebar-card h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.workshop-sidebar-card h3 i {
  font-size: 24px;
  color: #6bb8be;
}

/* Duration/Time Info */
.workshop-duration-info {
  background: linear-gradient(
    135deg,
    rgba(107, 184, 190, 0.08) 0%,
    rgba(107, 184, 190, 0.03) 100%
  );
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(107, 184, 190, 0.15);
}

.workshop-duration-info .duration-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  display: block;
}

.workshop-duration-info .duration-details {
  color: #555;
  line-height: 2;
}

/* Price & Duration Wrapper */
.workshop-price-duration-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workshop-pricing-info {
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 8px;
}

.workshop-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.workshop-pricing-row:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 8px;
  padding-bottom: 12px;
}

.workshop-pricing-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.workshop-pricing-amount {
  font-size: 14px;
  font-weight: 700;
  color: #6bb8be;
}

/* Location Cards - 3 Main Cards */
.workshop-location-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.workshop-location-card {
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
}

.workshop-location-card-header {
  background: linear-gradient(
    135deg,
    rgba(107, 184, 190, 0.1) 0%,
    rgba(107, 184, 190, 0.05) 100%
  );
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e8e8e8;
}

.workshop-location-card-flag {
  font-size: 28px;
}

.workshop-location-card-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.3rem;
}

/* Austria Sub-tabs - Underline Style */
.workshop-austria-tabs {
  display: flex;
  gap: 0;
  background: #f8f9fa;
  padding: 10px 15px 0 15px;
  border-bottom: 2px solid #e8e8e8;
}

.workshop-austria-tab {
  flex: 1;
  padding: 10px 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.workshop-austria-tab:hover {
  color: #5aa8ae;
}

.workshop-austria-tab.active {
  color: #6bb8be;
  border-bottom-color: #6bb8be;
}

.workshop-austria-content {
  display: none;
}

.workshop-austria-content.active {
  display: block;
}

/* Location Details */
.workshop-location-details {
  padding: 20px;
}

.workshop-location-price {
  display: none; /* Prices moved to Price & Duration section */
}

.workshop-location-dates {
  color: #555;
  line-height: 2.2;
  font-size: 1.1rem;
}

.workshop-location-dates-item {
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
  font-size: 1.4rem;
}

.workshop-location-dates-item:last-child {
  border-bottom: none;
}

/* Training Guide Card - Redesigned */
.workshop-training-guide-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  text-align: center;
  transition: all 0.3s ease;
}

.workshop-training-guide-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.workshop-training-guide-cover {
  margin-bottom: 15px;
}

.workshop-training-guide-cover img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.workshop-training-guide-card:hover .workshop-training-guide-cover img {
  transform: scale(1.03);
}

.workshop-training-guide-info {
  margin-top: 15px;
}

.workshop-training-guide-title {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.workshop-training-guide-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #6bb8be;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.workshop-training-guide-link:hover {
  background: #5aa8ae;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 184, 190, 0.3);
  color: white;
  text-decoration: none;
}

.workshop-training-guide-link i {
  font-size: 14px;
}

/* Mobile Register Button */
.workshop-register-btn-mobile {
  display: none;
}

/* Mobile Sticky Bottom Register */
.workshop-mobile-sticky-register {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(30, 30, 35, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 15px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.workshop-mobile-sticky-register.visible {
  transform: translateY(0);
}

.workshop-mobile-sticky-register-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #6bb8be 0%, #5aa8ae 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(107, 184, 190, 0.4);
  border: none;
}

.workshop-mobile-sticky-register-btn:hover {
  color: white;
  text-decoration: none;
}

/* Mobile Info Cards */
.workshop-mobile-info-cards {
  display: none;
  margin: 25px 0;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
  .workshop-header-content h1 {
    font-size: 2.2rem;
  }

  .workshop-header-content .workshop-subtitle {
    font-size: 1.1rem;
  }

  .workshop-goals-grid {
    gap: 15px;
  }

  .workshop-goal-card {
    flex: 1 1 calc(50% - 8px);
  }

  .workshop-section-header h3 {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .workshop-page-header {
    padding: 30px 0 30px;
  }

  .workshop-header-top {
    margin-bottom: 20px;
    gap: 10px;
  }

  .workshop-back-link {
    font-size: 12px;
    padding: 6px 10px;
  }

  .workshop-back-link i {
    font-size: 11px;
  }

  .workshop-lang-picker {
    padding: 3px;
  }

  .workshop-lang-slider {
    width: 38px;
    height: 28px;
    top: 3px;
    left: 3px;
  }

  .workshop-lang-picker.active-de .workshop-lang-slider {
    transform: translateX(40px);
  }

  .workshop-lang-btn {
    width: 38px;
    height: 28px;
    font-size: 11px;
  }

  .workshop-header-content h1 {
    font-size: 1.75rem;
  }

  .workshop-header-content .workshop-subtitle {
    /* Inherited font size */
  }

  .workshop-header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .workshop-header-actions-left {
    width: 100%;
  }

  .workshop-training-guide-btn,
  .workshop-register-btn-header {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 10px 18px;
  }

  /* Mobile sticky elements */
  .workshop-mobile-sticky-register {
    display: block;
  }

  /* Simplified mobile sticky subnav */
  .workshop-sticky-subnav {
    padding: 10px 0;
  }

  .workshop-sticky-subnav-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .workshop-sticky-left {
    flex-direction: row;
    gap: 8px;
    flex: 1;
  }

  .workshop-sticky-right {
    flex-direction: row;
    gap: 8px;
  }

  .workshop-sticky-subnav .workshop-back-link {
    font-size: 0;
    padding: 8px 10px;
    min-width: auto;
  }

  .workshop-sticky-subnav .workshop-back-link i {
    font-size: 14px;
    margin: 0;
  }

  .workshop-sticky-subnav .workshop-back-link span {
    display: none;
  }

  .workshop-sticky-subnav .workshop-training-guide-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .workshop-sticky-subnav .workshop-training-guide-btn i {
    font-size: 14px;
  }

  .workshop-sticky-subnav .workshop-register-btn-header {
    display: none;
  }

  .workshop-section-header {
    margin: 35px 0 25px 0;
  }

  .workshop-section-header h3 {
    font-size: 1.7rem;
  }

  .workshop-section-header i {
    font-size: 22px;
  }

  .workshop-two-col-grid {
    grid-template-columns: 1fr;
  }

  .workshop-goals-grid {
    flex-direction: column;
  }

  .workshop-goal-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Smaller goal icons on mobile */
  .workshop-goal-card-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  /* Mobile content order: Goals -> Duration/Locations -> Content */
  .workshop-mobile-info-cards {
    display: block;
    order: 2;
  }

  .workshop-section-header:has(+ .workshop-accordion-item) {
    order: 3;
  }

  .workshop-accordion-item {
    order: 4;
  }

  /* Hide desktop sidebar */
  .workshop-sidebar {
    display: none;
  }

  .workshop-prereq-card {
    padding: 20px;
  }

  .workshop-accordion-header {
    padding: 15px 20px;
  }

  .workshop-accordion-title {
    /* Inherited font size */
  }

  .workshop-accordion-body {
    padding: 20px;
  }

  .workshop-registration-section {
    padding: 20px;
    margin-top: 35px;
    margin-bottom: 35px;
    order: 5;
  }

  .workshop-training-guide-card {
    padding: 18px;
  }

  .workshop-training-guide-cover img {
    max-width: 180px;
  }
}

@media (max-width: 576px) {
  .workshop-header-content h1 {
    font-size: 1.5rem;
  }

  .workshop-header-content .workshop-subtitle {
    /* Inherited font size */
  }

  .workshop-section-header h3 {
    font-size: 1.5rem;
  }

  .workshop-prereq-card h4 {
    /* Inherited font size */
  }

  .workshop-accordion-title {
    /* Inherited font size */
  }
}

/* Print Styles */
@media print {
  .workshop-lang-picker,
  .workshop-register-btn,
  .workshop-register-btn-mobile,
  .workshop-register-btn-header,
  .workshop-back-link,
  .workshop-training-guide-btn,
  .workshop-training-guide-card,
  .workshop-sticky-subnav {
    display: none !important;
  }

  .workshop-page-header {
    background: #6bb8be;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .workshop-accordion-content {
    max-height: none !important;
    display: block !important;
  }

  .workshop-accordion-header {
    cursor: default;
  }
}

/* Accessibility */
.workshop-lang-btn:focus,
.workshop-register-btn:focus,
.workshop-register-btn-header:focus,
.workshop-back-link:focus,
.workshop-accordion-header:focus,
.workshop-austria-tab:focus,
.workshop-training-guide-btn:focus {
  outline: 3px solid #6bb8be;
  outline-offset: 2px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: #6bb8be;
  color: white;
}

::-moz-selection {
  background: #6bb8be;
  color: white;
}
