/*
Theme Name: Kadence Child
Template: kadence
*/

/* ===== HEADER ===== */
.lg-header {
  background: #fff;
  border-bottom: 2px solid #F39200;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 40px;
}

.lg-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.lg-logo a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.lg-logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #2D2D2D;
  line-height: 1;
}

.lg-logo-sub {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lg-nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lg-nav-list a {
  text-decoration: none;
  color: #2D2D2D;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.lg-nav-list a:hover {
  color: #F39200;
}

.lg-btn-primary {
  background: #F39200;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}

.lg-btn-primary:hover {
  background: #d4800a;
  color: #fff;
}

body {
  background-color: #ffffff !important;
}
/* ===== CARTES COURS ===== */
.cours-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px !important;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cours-card:hover {
  border-color: #F39200;
  box-shadow: 0 8px 32px rgba(243,146,0,0.2);
  transform: translateY(-4px);
}

.cours-pill {
  display: inline-block;
  background: #FFF3E0;
  color: #F39200;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  margin: 8px 0;
}
.cours-card {
  transition: all 0.3s ease !important;
}

.cours-card:hover {
  border-color: #F39200 !important;
  box-shadow: 0 8px 32px rgba(243,146,0,0.2) !important;
  transform: translateY(-4px) !important;
}
.e-con-inner {
  overflow: visible !important;
}
.elementor-element.cours-card {
  overflow: visible !important;
}
.cours-card:hover .elementor-button-wrapper a {
  background: #F39200 !important;
  color: #fff !important;
}
.cours-card:hover a.elementor-button-link.elementor-size-sm {
  background-color: #F39200 !important;
  color: #fff !important;
}
/* ===== AGENDA ===== */
.agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.agenda-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.agenda-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.agenda-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    line-height: 1;
    color: #2D2D2D;
}

.agenda-month {
    font-size: 12px;
    font-weight: 700;
    color: #F39200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenda-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.agenda-info strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #2D2D2D;
}

.agenda-info span {
    font-size: 13px;
    color: #718096;
}

@media (max-width: 767px) {
    .agenda-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1024px) {
    .elementor-heading-title {
        word-break: break-word;
        white-space: normal;
    }
}
/* ===== CARTES ÉQUIPE ===== */
.equipe-card .elementor-widget-image {
  height: 280px;
  overflow: hidden;
}
.equipe-card .elementor-widget-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}