:root {
  --bg: #0f172a;
  --bg-dark: #0b1120;
  --bg-soft: #162033;
  --border: rgba(255, 255, 255, 0.10);

  --text: #f8fafc;
  --text-muted: #94a3b8;

  --primary: #38bdf8;
  --primary-hover: #0ea5e9;

  --container: 1180px;

}


/* ==========================================================
   BASE
========================================================== */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;

  min-height: 100vh;

  /* IMPORTANT :
       Ne pas mettre display:flex + align-items:center ici */
  padding-top: 82px;
}

a {
  color: inherit;
}

.container {
  max-width: var(--container);
}


/* ==========================================================
   HEADER
========================================================== */

.navbar-custom {
  min-height: 72px;
  padding: 12px 0;

  background: rgba(11, 17, 32, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);

  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);

  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}


/* Logo */

.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.navbar-brand img {
  display: block;
  max-height: 42px;
  width: auto;
}


/* Menu */

#navbarCollapse {
  align-items: center;
}

#menu-new-primary {
  display: flex;
  align-items: center;
  gap: 6px;
}

#menu-new-primary>li {
  list-style: none;
}

#menu-new-primary>li>a {
  position: relative;

  display: flex;
  align-items: center;

  padding: 10px 14px;

  color: #cbd5e1;

  font-size: 15px;
  font-weight: 500;

  text-decoration: none;

  border-radius: 8px;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

#menu-new-primary>li>a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}


/* Page active */

#menu-new-primary .current-menu-item>a,
#menu-new-primary .current_page_item>a {
  color: var(--primary);
}

#menu-new-primary .current-menu-item>a::after,
#menu-new-primary .current_page_item>a::after {
  content: "";

  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;

  height: 2px;

  background: var(--primary);

  border-radius: 10px;
}


/* Recherche */

#search-toggle {
  width: 42px;
  height: 42px;

  display: flex !important;
  align-items: center;
  justify-content: center;

  padding: 0 !important;

  border-radius: 50% !important;

  color: var(--text) !important;
}

#search-toggle:hover {
  background: rgba(56, 189, 248, 0.12) !important;
  color: var(--primary) !important;
}


/* Bouton CTA */

.nav-btn {
  margin-left: auto;
}

.nav-btn .btn {
  border-radius: 50px;

  padding: 10px 22px;

  font-size: 14px;
  font-weight: 600;
}

.btn-orange {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--bg-dark) !important;
}

.btn-orange:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}


/* Mobile menu */

.navbar-toggler {
  width: 46px;
  height: 46px;

  border: 1px solid var(--border);
  border-radius: 10px;

  color: #fff;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}


/* ==========================================================
   LINK TREE / HERO
========================================================== */

.link-tree-container {
  width: 100%;
  max-width: 620px;

  margin: 30px auto 70px;

  padding: 30px 20px;

  text-align: center;
}

.profile-img {
  width: 110px;
  height: 110px;

  object-fit: cover;

  border-radius: 50%;
  border: 3px solid var(--primary);

  margin-bottom: 20px;

  background: #1e293b;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.link-tree-container h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.link-tree-container .lead {
  color: var(--text-muted) !important;

  font-size: 16px;
}


/* Boutons */

.link-btn {
  min-height: 58px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 14px 60px;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(56, 189, 248, 0.7);
  border-radius: 14px;

  color: var(--text);

  font-size: 15px;
  font-weight: 600;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.link-btn i {
  position: absolute;

  left: 22px;

  width: 24px;

  text-align: center;

  font-size: 19px;

  color: var(--primary);
}

.link-btn:hover {
  transform: translateY(-2px);

  background: rgba(56, 189, 248, 0.09);

  border-color: var(--primary);

  color: #fff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}


/* ==========================================================
   FOOTER
========================================================== */

.footer-part {
  width: 100%;

  margin-top: 40px;

  padding-top: 65px !important;
  padding-bottom: 35px !important;

  background: var(--bg-dark);

  border-top: 1px solid var(--border);
}

.footer-part .logo img {
  max-height: 44px;
  width: auto;
}

.footer-part h5 {
  margin-bottom: 20px;

  color: #fff !important;

  font-size: 15px !important;
  font-weight: 700;

  letter-spacing: 0.02em;
}

.footer-part p {
  color: var(--text-muted);

  line-height: 1.7;
}


/* Footer menus */

.footer-part ul {
  margin: 0;
  padding: 0;
}

.footer-part ul li {
  margin-bottom: 11px;

  list-style: none;
}

.footer-part ul li a {
  color: var(--text-muted);

  font-size: 14px;

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-part ul li a:hover {
  color: var(--primary);
}


/* ==========================================================
   NEWSLETTER
========================================================== */

#newsletter_form {
  max-width: 390px;
}

#newsletter_form .main-form {
  display: grid;
  gap: 10px;
}

#newsletter_form input[type="text"],
#newsletter_form input[type="email"] {
  width: 100%;

  height: 48px;

  padding: 0 15px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 9px;

  color: #fff;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

#newsletter_form input::placeholder {
  color: #64748b;
}

#newsletter_form input[type="text"]:focus,
#newsletter_form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.07);

  border-color: var(--primary);

  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.10);
}

#newsletter_form input[type="submit"] {
  width: 100%;

  height: 48px;

  padding: 0 20px;

  border: 0;
  border-radius: 9px;

  background: var(--primary);

  color: var(--bg-dark);

  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

#newsletter_form input[type="submit"]:hover {
  background: var(--primary-hover);

  transform: translateY(-1px);
}


/* Copyright */

.copy-info {
  margin-top: 30px !important;

  padding-top: 22px;

  border-top: 1px solid var(--border);

  font-size: 13px;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 991.98px) {

  body {
    padding-top: 72px;
  }

  .navbar-custom {
    padding: 10px 15px;
  }

  #navbarCollapse {
    margin-top: 12px;
    padding: 18px;

    background: #111b2e;

    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  }

  #menu-new-primary {
    align-items: stretch;
    gap: 4px;
  }

  #menu-new-primary>li>a {
    padding: 11px 12px;
  }

  #menu-new-primary .current-menu-item>a::after,
  #menu-new-primary .current_page_item>a::after {
    display: none;
  }

  .nav-btn {
    margin-top: 10px;
    margin-left: 0;
  }

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

  .link-tree-container {
    margin-top: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-part {
    padding-top: 50px !important;
  }
}


@media (max-width: 575.98px) {

  .profile-img {
    width: 90px;
    height: 90px;
  }

  .link-tree-container h1 {
    font-size: 22px;
  }

  .link-btn {
    min-height: 54px;

    padding-left: 55px;
    padding-right: 45px;
  }

  .link-btn i {
    left: 18px;
  }
}

.business-meetup {
  width: 100%;
  padding: 50px 0 30px;
}

.event-card {
  position: relative;
  overflow: hidden;

  padding: 45px;

  background:
    linear-gradient(135deg,
      rgba(56, 189, 248, 0.08),
      rgba(255, 255, 255, 0.02));

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}


/* Badge */

.event-badge {
  display: inline-block;

  margin-bottom: 25px;
  padding: 7px 13px;

  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 50px;

  color: #38bdf8;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: .08em;
}


/* Type */

.event-type {
  margin-bottom: 12px;

  color: #94a3b8;

  font-size: 14px;
  font-weight: 600;
}

.event-type i {
  margin-right: 7px;
  color: #38bdf8;
}


/* Titre */

.event-card h2 {
  max-width: 760px;

  margin-bottom: 18px;

  color: #fff;

  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;

  font-weight: 750;
  letter-spacing: -1.5px;
}

.event-card h2 span {
  display: block;

  margin-top: 7px;

  color: #94a3b8;

  font-size: .62em;
  font-weight: 500;

  letter-spacing: -.5px;
}


/* Description */

.event-intro {
  max-width: 650px;

  color: #f8fafc;

  font-size: 18px;
  line-height: 1.6;
}

.event-description {
  max-width: 650px;

  margin-bottom: 30px;

  color: #94a3b8;

  font-size: 15px;
  line-height: 1.7;
}


/* Infos */

.event-details {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}

.event-detail {
  display: flex;
  align-items: center;

  gap: 12px;

  min-width: 175px;

  padding: 12px 15px;

  background: rgba(255, 255, 255, .035);

  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.event-detail>i {
  width: 34px;

  color: #38bdf8;

  font-size: 18px;
  text-align: center;
}

.event-detail div {
  display: flex;
  flex-direction: column;
}

.event-detail small {
  margin-bottom: 2px;

  color: #64748b;

  font-size: 11px;

  text-transform: uppercase;
  letter-spacing: .06em;
}

.event-detail strong {
  color: #f8fafc;

  font-size: 13px;
  font-weight: 600;
}

.event-detail span {
  color: #94a3b8;

  font-size: 12px;
}


/* CTA */

.event-action {
  height: 100%;

  padding: 30px;

  background: #111b2e;

  border: 1px solid rgba(56, 189, 248, .18);
  border-radius: 18px;
}

.event-action-label {
  color: #38bdf8;

  font-size: 12px;
  font-weight: 600;

  text-transform: uppercase;
}

.event-action h3 {
  margin: 10px 0;

  color: #fff;

  font-size: 24px;
  font-weight: 700;
}

.event-action p {
  color: #94a3b8;

  font-size: 14px;
  line-height: 1.6;
}

.event-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  margin: 20px 0 12px;
  padding: 13px 18px;

  background: #38bdf8;

  border: none;
  border-radius: 10px;

  color: #0b1120;

  font-weight: 700;
}

.event-btn:hover {
  background: #0ea5e9;
  color: #0b1120;
}

.event-action>small {
  display: block;

  color: #64748b;

  font-size: 11px;
  text-align: center;
}


/* Mobile */

@media (max-width: 767px) {

  .business-meetup {
    padding-top: 25px;
  }

  .event-card {
    padding: 25px 20px;
  }

  .event-card h2 {
    font-size: 31px;
  }

  .event-details {
    flex-direction: column;
  }

  .event-detail {
    width: 100%;
  }

  .event-action {
    margin-top: 10px;
  }
}


/* ==========================================================
   ORGANISATEUR / À PROPOS
========================================================== */

.event-host {
  display: flex;
  align-items: center;
  gap: 22px;

  margin-top: 40px;
  padding-top: 32px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* Photo */

.event-host-photo {
  flex: 0 0 auto;
}

.event-host-photo img {
  width: 88px;
  height: 88px;

  display: block;

  object-fit: cover;

  border-radius: 50%;

  border: 2px solid rgba(56, 189, 248, 0.6);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}


/* Texte */

.event-host-content {
  max-width: 760px;
}

.event-host-label {
  display: block;

  margin-bottom: 5px;

  color: #38bdf8;

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-host-content h3 {
  margin: 0 0 8px;

  color: #fff;

  font-size: 19px;
  font-weight: 700;
}

.event-host-content p {
  margin: 0;

  color: #94a3b8;

  font-size: 14px;
  line-height: 1.65;
}

.event-host-content .event-host-note {
  margin-top: 8px;

  color: #cbd5e1;

  font-weight: 600;
}


/* Mobile */

@media (max-width: 575.98px) {

  .event-host {
    align-items: flex-start;

    gap: 16px;

    margin-top: 30px;
    padding-top: 25px;
  }

  .event-host-photo img {
    width: 65px;
    height: 65px;
  }

  .event-host-content h3 {
    font-size: 17px;
  }

  .event-host-content p {
    font-size: 13px;
  }
}

#meetupRegistrationModal .modal-content {
  background: #111b2e !important;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

#meetupRegistrationModal .modal-header,
#meetupRegistrationModal .modal-body {
  padding: 24px;
}

#meetupRegistrationModal .modal-title {
  font-weight: 700;
}

#meetupRegistrationModal .modal-dialog {
  max-width: 550px;
}

#meetupRegistrationModal label {
  color: #cbd5e1;
  font-weight: 600;
}

#meetupRegistrationModal .psw-sp-card h4{
  padding-top: 16px;
  font-size: 1.4rem; 
  color: #cbd5e1;
}

#meetupRegistrationModal .payment_options {
font-size: 1.1rem;
color: #cbd5e1;
}

.navbar-brand span {
  color: gold !important;
  
}