/* ==========================================================================
   KAMPAI MONTRÉAL — UI COMPONENTS (CARDS, TABS, WORKSHOPS, FOOTER)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. SESSION SWITCHER & EVENT OVERVIEW
   -------------------------------------------------------------------------- */
.intro-box {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 2px solid rgba(14, 35, 64, 0.12);
  box-shadow: var(--shadow-md);
  margin-bottom: 4rem;
}

.intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-navy-dark);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem auto;
}

.session-toggle-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.session-tab {
  flex: 1;
  max-width: 440px;
  background: var(--color-paper-light);
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.session-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: transparent;
  transition: var(--transition-fast);
}

.session-tab.active {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.session-tab.active::before {
  background: var(--color-red);
}

.session-tab-date {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.session-tab.active .session-tab-date {
  color: var(--color-gold);
}

.session-tab-badge {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: var(--color-teal);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.session-tab.active .session-tab-badge {
  background: var(--color-red);
}

.session-tab-desc {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   2. TICKET PACKAGES GRID (FORFAITS DE DÉGUSTATION)
   -------------------------------------------------------------------------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(14, 35, 64, 0.15);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  transition: var(--transition-spring);
  box-shadow: var(--shadow-sm);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-navy);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  background: var(--color-paper-light);
  border: 3px solid var(--color-red);
}

.package-card.featured::before {
  content: 'PLUS POPULAIRE';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.package-price span {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(14, 35, 64, 0.1);
  font-size: 1rem;
  color: var(--color-navy-dark);
}

.package-features li svg {
  color: var(--color-teal);
  flex-shrink: 0;
}

.btn-card-ticket {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.9rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-card-ticket:hover {
  background: var(--color-red);
  box-shadow: 0 6px 20px rgba(229, 36, 33, 0.4);
}

.package-card.featured .btn-card-ticket {
  background: var(--color-red);
}

.package-card.featured .btn-card-ticket:hover {
  background: var(--color-red-dark);
}

/* Extra Coupon Addon Ribbon */
.coupon-addon-box {
  margin-top: 3rem;
  background: rgba(245, 184, 19, 0.15);
  border: 2px dashed var(--color-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.coupon-addon-text h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-navy);
}

.coupon-addon-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.coupon-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-navy);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. WORKSHOPS SECTION (ATELIERS DE DÉGUSTATION)
   -------------------------------------------------------------------------- */
.workshops-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .workshops-container {
    grid-template-columns: 1fr;
  }
}

.workshop-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(14, 35, 64, 0.12);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-teal);
}

.workshop-badge-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.workshop-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.speaker-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(14, 35, 64, 0.1);
}

.speaker-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  border: 2px solid var(--color-navy);
  flex-shrink: 0;
}

.speaker-info h5 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-navy);
}

.speaker-info p {
  font-size: 0.85rem;
  color: var(--color-red);
  font-weight: 700;
}

.workshop-description {
  font-size: 0.98rem;
  color: var(--color-navy-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. VENUE & ACCESS SECTION
   -------------------------------------------------------------------------- */
.venue-card {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 850px) {
  .venue-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
}

.venue-info h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.venue-info h4 {
  font-family: var(--font-condensed);
  font-size: 1.3rem;
  color: var(--color-paper);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.venue-details-list {
  list-style: none;
  margin-bottom: 2rem;
}

.venue-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.venue-details-list svg {
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.venue-map-container {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.venue-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   5. ASQ & FOOTER
   -------------------------------------------------------------------------- */
.footer-asq {
  background: var(--color-paper-dark);
  border-top: 3px solid var(--color-navy);
  padding: 4rem 0 2rem 0;
}

.asq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .asq-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.asq-logo-img {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.asq-text h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.asq-text p {
  font-size: 0.98rem;
  color: var(--color-navy-dark);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(14, 35, 64, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
