@import 'colors.css';
@import 'forms.css';

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins.ttf');
}

@font-face {
  font-family: Cairo;
  src: url('../fonts/Cairo.ttf');
}

@font-face {
  font-family: Segoe Ui;
  src: url('../fonts/SegoeUI.ttf');
}

@font-face {
  font-family: Alro;
  src: url('../fonts/Alro.ttf');
}

@font-face {
  font-family: Raleway;
  src: url('../fonts/Raleway.ttf');
}

@font-face {
  font-family: Gotham;
  src: url('../fonts/Gotham-Book.otf');
}

html,
body {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
  font-family: 'Poppins', 'Cairo', sans-serif;
}

* ::-webkit-scrollbar-track {
  background-color: rgba(175, 200, 217, 0.26)
}

* ::-webkit-scrollbar {
  background-color: transparent;
  width: 10px;
  height: 12px;
}

* ::-webkit-scrollbar-thumb {
  border-inline: 2px solid transparent;
  border-block: 3px solid transparent;
  border-radius: 12px;
  background-clip: content-box;
  background-color: rgba(var(--bs-primary-rgb), 0.5);
}

* ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(var(--bs-primary-rgb), 1);
}

/* Font Class */
.ff-segoe-ui,
.ff-segoe-ui * {
  box-sizing: border-box;
  font-family: 'Segoe Ui', 'Cairo', sans-serif;
}

.ff-alro,
.ff-alro * {
  box-sizing: border-box;
  font-family: 'Alro', 'Cairo', sans-serif;
}

.ff-raleway,
.ff-raleway * {
  box-sizing: border-box;
  font-family: 'Raleway', 'Cairo', sans-serif;
}

.ff-gotham,
.ff-gotham * {
  box-sizing: border-box;
  font-family: 'Gotham', 'Cairo', sans-serif;
}

/* GLOBAL */
a {
  color: currentColor;
  text-decoration: none;
}

a:hover {
  color: var(--bs-success);
}

/* a {color: var(--dash-primary);} */
/* a:hover {color: var(--dash-secondary);} */
img {
  display: block;
}

.no-scrollbar ::-webkit-scrollbar {
  display: none;
}

.no-outline {
  outline: none !important;
}

.no-outline:focus {
  outline: none !important;
}

.no-outline:focus-visible {
  outline: none !important;
}

.no-box-shadow {
  box-shadow: none;
}

.no-box-shadow:focus {
  box-shadow: none;
}

.cursor-pointer {
  cursor: pointer;
}

/* GENERAL */
html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
  background: url('../images/background.png') no-repeat center center fixed;
  background-size: cover;
  padding-bottom: 5vw;
}

body.page-accueil {
  background: url('../images/background1.png') no-repeat center center fixed;
  background-size: cover;
}

body.page-inscription {
  background: url('../images/background2.png') no-repeat center center fixed;
  background-size: cover;
}

header {
  position: relative;
  width: 100vw;
  height: auto;
  padding: 1vw 2vw;
  background: transparent;
  z-index: 100;
}

header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #f1c3c8;
  pointer-events: none;
}

/* Header Container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Header Logo */
.header-logo {
  display: block;
}

.header-logo img {
  max-width: 150px;
  height: auto;
}

/* Header Navigation */
.header-nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.header-nav .nav-link {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.5rem 0.6rem;
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  background: transparent;
}

.header-nav .nav-link .nav-sep {
  color: #E8725C;
  font-weight: 300;
  margin-right: 0.15rem;
}

.header-nav .nav-link:hover {
  color: #E8725C;
  background: transparent;
}

.header-nav .nav-link.active {
  color: #E8725C;
  background: transparent;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle:hover {
  color: #E04050;
}

main {
  position: relative;
  width: 100vw;
  min-height: calc(100vh - 15vw);
  display: flex;
  /*align-items: center;*/
  justify-content: center;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 3vw;
}

/* CONTENT */
.body-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 40 80 / 50%);
  z-index: -2;
  display: none;
}

.content {
  position: relative;
  width: fit-content;
  max-width: 100vw;
  min-height: calc(100vh - 4vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 2vw;
  padding: 2vw 0;
}

.content.content-center {
  justify-content: center;
}

.content.content-agenda {
  justify-content: flex-start;
  padding-top: 10vh;
}

/* Logo Bausch + Lomb */
.logo-bausch {
  width: 280px;
  max-width: 20vw;
  margin-bottom: 1vw;
}

.logo-bausch img {
  width: 100%;
  height: auto;
}

/* Event Title - Text Based */
.event_title {
  position: relative;
  width: auto;
  height: auto;
  text-align: center;
  color: #fff;
  margin-bottom: 1vw;
}

.event_title .event-name {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 8px;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.event_title .event-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0.25rem;
  color: #fff;
}

.event_title .event-brand::before,
.event_title .event-brand::after {
  content: '';
  width: 80px;
  height: 2px;
  background: #fff;
}

.event_title .event-brand .brand-name {
  font-weight: 700;
  color: #E8725C;
  letter-spacing: 2px;
}

/* Event Info (date & location) */
.event-info {
  text-align: center;
  margin-top: 0.5rem;
}

.event-info .event-date-text {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.event-info .event-location {
  display: inline-block;
  background: #E8725C;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

.registration_form {
  position: relative;
  width: 100%;
  max-width: 45vw;
  background: transparent;
  border-radius: 10px;
  padding: 1vw;
}

/* Plain input style (inscription form) */
.form-input-plain {
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 30px;
  padding: 1.2rem 1.5rem;
  font-family: inherit;
  font-size: 1.05rem;
  height: 58px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.5;
}

.form-input-plain::placeholder {
  color: #999;
  font-weight: 400;
}

.form-input-plain:focus {
  border-color: #E04050;
  box-shadow: 0 0 0 0.2rem rgba(224, 64, 80, 0.25);
  background-color: #fff;
  outline: none;
}

.was-validated .form-input-plain:invalid {
  box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25);
}

/* Default form controls (admin, other pages) */
.form-control,
.form-control-sm,
.form-select {
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 18px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  line-height: 1.5;
}

.form-floating>.form-control,
.form-floating>.form-select {
  height: calc(2.2rem + 2px);
  border-radius: 18px;
  padding: 0 12px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.form-select {
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-floating>label {
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  color: #666;
  width: auto;
  text-align: left;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
  height: auto;
  transition: all 0.2s ease;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  top: 0;
  transform: translateY(-100%) scale(0.85);
  background: rgba(255, 255, 255, 0.9);
  padding: 0 5px;
  border-radius: 5px;
  left: 10px;
}

.form-floating>.form-select~label {
  top: 50%;
  transform: translateY(-50%);
}

.form-floating>.form-select:focus~label,
.form-floating>.form-select.has-value~label {
  top: 0;
  transform: translateY(-100%) scale(0.85);
  background: rgba(255, 255, 255, 0.9);
  padding: 0 5px;
  border-radius: 5px;
  left: 10px;
}

.form-control:focus,
.form-control-sm:focus,
.form-select:focus {
  border-color: #E04050;
  box-shadow: 0 0 0 0.2rem rgba(224, 64, 80, 0.25);
  background-color: #fff;
}

.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-control-sm.is-invalid,
.was-validated .form-control-sm:invalid,
.form-select.is-invalid,
.was-validated .form-select:invalid {
  box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25);
}

/* Accueil Bottom Section */
.accueil-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5vw;
  position: absolute;
  bottom: 3vw;
  left: 50%;
  transform: translateX(-50%);
}

/* Event Date & Location */
.event_date {
  text-align: center;
  margin-top: 0;
  color: #fff;
}

.event_date .date-image {
  max-width: 35vw;
  height: auto;
}

.event_date .date {
  font-size: 1.8vw;
  font-weight: 400;
}

.event_date .date .day {
  color: #E60033;
}

.event_date .date .year {
  color: #E60033;
}

.event_date .location {
  font-size: 1.2vw;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* GDPR Checkbox styling for dark background */
.registration_form .form-check {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 10px;
}

.registration_form .form-check-label {
  color: #fff;
  font-size: 0.9rem;
}

.registration_form .form-check-label a {
  color: #E8725C;
  text-decoration: underline;
}

.registration_form .form-check-label a:hover {
  color: #E04050;
}

.registration_form .form-check-input {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: #E8725C;
  box-shadow: 0 0 0 0.25rem rgba(232, 114, 92, 0.25) !important;
}

.registration_form .form-check-input:checked {
  background-color: #E8725C !important;
  border-color: #E8725C !important;
}

.registration_form .form-check-input:focus {
  border-color: #E8725C;
  box-shadow: 0 0 0 0.25rem rgba(232, 114, 92, 0.25);
}

.registration_btn {
  display: inline-block;
  min-width: 300px;
  height: 65px;
  background: url('../images/registration_btn.png') center/contain no-repeat;
  color: transparent;
  font-size: 0;
  padding: 0;
  margin: 0;
  margin-top: 1.5vw;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.accueil-bottom .registration_btn {
  min-width: 300px;
  height: 65px;
  margin-top: 0.5vw;
}

.registration_btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.footer1 {
  width: 100vw;
  height: 1vw;
  background: linear-gradient(to right, #E60033, #E60033);
}

.footer2 {
  width: 100vw;
  height: 2vw;
  background-color: #0A0E2A;
}

/* RESPONSIVE */
@media screen and (max-width: 1139px) {
  .event_title .event-name {
    font-size: 2.8rem;
  }

  .registration_form {
    max-width: 55vw;
  }
}

@media screen and (max-width: 991px) {

  body,
  body.page-accueil {
    background: url('../images/mobile_background.png') no-repeat center center fixed !important;
    background-size: cover !important;
  }

  header {
    padding: 25px 4vw;
  }

  header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f5d4d7;
    pointer-events: none;
  }

  .header-container {
    justify-content: center;
    position: relative;
  }

  .header-logo {
    margin: 10px auto;
  }

  .header-logo img {
    max-width: 85px;
  }

  .mobile-menu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(26, 16, 48, 0.98), rgba(13, 27, 62, 0.98));
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 20px 20px;
    gap: 0.5rem;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .header-nav.open {
    right: 0;
  }

  .header-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 1.4rem;
  }

  .header-nav .nav-link .nav-sep {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }

  main {
    min-height: calc(100vh - 15vw);
  }

  .content {
    min-height: calc(100vh - 15vw);
    gap: 1.5vw;
  }

  .logo-bausch {
    max-width: 30vw;
  }

  .event_title .event-name {
    font-size: 2.2rem;
    letter-spacing: 4px;
  }

  .event_title .event-brand {
    font-size: 1.2rem;
  }

  .registration_form {
    max-width: 70vw;
    padding: 1.5vw;
  }

  .registration_form .row.g-3 {
    --bs-gutter-y: 0.5rem;
  }

  .form-floating>.form-control,
  .form-floating>.form-select {
    height: 2rem;
  }

  .registration_form .registration_btn {
    max-width: 25vw;
    max-height: 6vw;
  }

  .accueil-bottom {
    bottom: 4vw;
  }

  .accueil-bottom .registration_btn {
    width: 200px;
    height: 48px;
  }

  .event_date {
    margin-top: 0;
  }

  .event_date .date-image {
    max-width: 45vw;
  }

  .event_date .date {
    font-size: 3vw;
  }

  .event_date .location {
    font-size: 2vw;
  }
}

@media screen and (max-width: 767px) {
  header {
    padding: 4vw 3vw;
  }

  .content {
    gap: 5vh;
    min-height: auto;
    padding: 2vh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-accueil .content {
    min-height: 85vh;
    justify-content: flex-end;
    padding: 3vh 0 8vh;
    gap: 0;
  }

  .logo-bausch {
    max-width: 35vw;
  }

  .event_title {
    width: auto;
    margin: 0 auto;
  }

  .event_title .event-name {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }

  .event_title .event-brand {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .event_title .event-brand::before,
  .event_title .event-brand::after {
    width: 40px;
  }

  .registration_form {
    max-width: 85vw;
    padding: 2vw;
  }

  .registration_form .row.g-3 {
    --bs-gutter-y: 0.4rem;
  }

  .form-floating>.form-control,
  .form-floating>.form-select {
    height: 2rem;
  }

  .registration_form .registration_btn {
    max-width: 50vw;
    max-height: 12vw;
    margin-block: 2vw;
  }

  .accueil-bottom {
    position: relative;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vh;
  }

  .accueil-bottom .registration_btn {
    width: 230px;
    height: 55px;
    margin: 0 auto;
  }

  footer {
    height: 4vw;
  }

  .footer1 {
    height: 1.5vw;
  }

  .footer2 {
    height: 2.5vw;
  }

  .event_date .date-image {
    max-width: 66vw;
  }

  .event_date .date {
    font-size: 4vw;
  }

  .event_date .location {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 575px) {
  .logo-bausch {
    max-width: 45vw;
  }

  .event_title {
    width: auto;
    margin: 0 auto;
  }

  .event_title .event-name {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .event_title .event-brand {
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .event_title .event-brand::before,
  .event_title .event-brand::after {
    width: 30px;
  }

  .registration_form {
    max-width: 95vw;
    padding: 2vw;
  }

  .registration_form .row.g-3 {
    --bs-gutter-y: 0.35rem;
  }

  .form-floating>.form-control,
  .form-floating>.form-select {
    height: 2rem;
  }

  .registration_form .registration_btn {
    max-width: 50vw;
    max-height: 12vw;
  }

  .page-accueil .content {
    min-height: 85vh;
    justify-content: flex-end;
    padding: 2vh 0 10vh;
    gap: 0;
  }

  .accueil-bottom {
    position: relative;
    margin: 0;
    padding-bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
  }

  .accueil-bottom .registration_btn {
    width: 230px;
    height: 55px;
    margin: 0 auto;
  }

  .event_date .date-image {
    max-width: 90vw;
  }

  .event_date .date {
    font-size: 5vw;
  }

  .event_date .location {
    font-size: 3vw;
  }
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1.5vw 0;
}

.nav-btn {
  background: linear-gradient(135deg, #E60033, #CC002D);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 153, 168, 0.3);
}

.nav-btn:hover {
  background: linear-gradient(135deg, #E60033, #CC002D);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 75, 145, 0.4);
}

.agenda-container {
  width: 100%;
  max-width: 65vw;
  padding: 2rem 0;
  margin: 0 auto;
  font-family: 'Gotham', 'Segoe Ui', sans-serif;
}

.agenda-banner {
  text-align: center;
  margin-bottom: 2rem;
}

.agenda-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Agenda Tabs */
.agenda-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.agenda-tab {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 180px;
}

.agenda-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(214, 75, 145, 0.5);
  color: #fff;
}

.agenda-tab.active {
  background: linear-gradient(135deg, #9D417B 0%, #006EB4 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(157, 65, 123, 0.4);
}

.agenda-tab .tab-day {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.agenda-tab .tab-date {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Agenda Day Sections */
.agenda-day {
  display: none;
}

.agenda-day.active {
  display: block;
}

.agenda-day-header {
  color: #E60033;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border-left: 4px solid #E60033;
  background: rgba(214, 75, 145, 0.08);
  border-radius: 0 8px 8px 0;
}

.agenda-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agenda-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  min-height: 72px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.agenda-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Gradient variations */
.gradient-magenta-blue {
  background: linear-gradient(90deg, #006EB4 0%, #E60033 100%);
}

.gradient-blue-magenta {
  background: linear-gradient(90deg, #E60033 0%, #006EB4 100%);
}

.agenda-time {
  flex-shrink: 0;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 140px;
}

.agenda-content {
  flex: 1;
  padding: 0 1.25rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
}

.agenda-speaker {
  flex-shrink: 0;
  padding: 0 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agenda-session-header {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin: 1.2rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.session-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.session-time {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.session-moderators {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.agenda-topic {
  font-size: 1rem;
  line-height: 1.4;
  color: #fff;
}

/* Speakers Styles */
.speakers-container {
  width: 100%;
  max-width: 65vw;
  margin: 1vw 0;
  font-family: 'Gotham', 'Segoe Ui', sans-serif;
}

.speakers-title {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border-bottom: 3px solid #E60033;
  padding-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.speakers-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  width: 100%;
}

.speaker-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.speaker-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.speaker-image {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #5DD8E8;
  background: rgba(255, 255, 255, 0.2);
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-info {
  flex: 1;
  text-align: left;
}

.speaker-name {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.speaker-bio {
  color: #E8F4F8;
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

/* Legacy list style - keep for backward compatibility */
.speaker-details {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #E8F4F8;
  text-align: left;
}

.speaker-details li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.5;
}

.speaker-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #5DD8E8;
  border-radius: 50%;
}

/* Responsive for new pages */
@media screen and (max-width: 991px) {
  .content.content-agenda {
    padding-top: 40vh;
  }

  .nav-buttons {
    gap: 0.8rem;
  }

  .nav-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .agenda-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .agenda-tabs {
    gap: 0.5rem;
  }

  .agenda-tab {
    min-width: 150px;
    padding: 0.6rem 1rem;
  }

  .agenda-tab .tab-day {
    font-size: 1rem;
  }

  .agenda-day-header {
    font-size: 1rem;
  }

  .agenda-container {
    max-width: 95vw;
    padding: 0.5rem;
  }

  .agenda-item {
    padding: 0.9rem 1.2rem;
    min-height: 65px;
  }

  .agenda-time {
    min-width: 100px;
    font-size: 0.85rem;
    padding: 0 0.8rem;
  }

  .agenda-content {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .agenda-speaker {
    font-size: 0.8rem;
    padding: 0 0.8rem;
  }

  .speakers-container {
    max-width: 90vw;
  }

  .speakers-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .speakers-grid {
    gap: 1.5rem;
  }

  .speaker-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }

  .speaker-image {
    width: 140px;
    height: 140px;
  }

  .speaker-info {
    text-align: center;
  }

  .speaker-name {
    font-size: 1.5rem;
  }

  .speaker-bio {
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .content.content-agenda {
    padding-top: 35vh;
  }

  .content {
    gap: 2vh;
  }

  .nav-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  .agenda-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
  }

  .agenda-tabs {
    gap: 0.4rem;
  }

  .agenda-tab {
    min-width: 0;
    flex: 1;
    padding: 0.5rem 0.6rem;
  }

  .agenda-tab .tab-day {
    font-size: 0.85rem;
  }

  .agenda-tab .tab-date {
    font-size: 0.65rem;
  }

  .agenda-day-header {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .agenda-container {
    max-width: 98vw;
    padding: 0.25rem;
  }

  .agenda-items {
    gap: 0.75rem;
  }

  .agenda-item {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 15px;
    padding: 1rem 1.2rem;
    min-height: auto;
    gap: 0.5rem;
  }

  .agenda-time {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 0 0.5rem 0;
    min-width: auto;
    width: 100%;
    font-size: 0.9rem;
  }

  .agenda-content {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    width: 100%;
  }

  .agenda-speaker {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0 0 0;
    width: 100%;
    font-size: 0.8rem;
    text-align: right;
  }

  .agenda-session-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
  }

  .session-time,
  .session-moderators {
    border-left: none;
    padding-left: 0;
  }

  .session-moderators {
    font-size: 0.75rem;
  }

  .speakers-container {
    max-width: 95vw;
  }

  .speakers-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
  }

  .speakers-grid {
    flex-direction: column;
    gap: 1.25rem;
  }

  .speaker-card {
    min-width: 100%;
    max-width: 100%;
    padding: 1.25rem;
    border-left-width: 4px;
  }

  .speaker-image {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    border-width: 3px;
  }

  .speaker-name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .speaker-bio {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 575px) {
  .nav-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nav-btn {
    width: 85%;
    text-align: center;
    padding: 0.6rem 1rem;
  }

  .agenda-title {
    font-size: 1.25rem;
    letter-spacing: 0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }

  .agenda-container {
    max-width: 100vw;
    padding: 0 0.5rem;
  }

  .agenda-items {
    gap: 0.6rem;
  }

  .agenda-item {
    border-radius: 15px;
    padding: 0.9rem 1rem;
  }

  .agenda-time {
    font-size: 0.85rem;
  }

  .agenda-content {
    font-size: 0.9rem;
  }

  .agenda-speaker {
    font-size: 0.75rem;
  }

  .speakers-container {
    max-width: 98vw;
  }

  .speakers-title {
    font-size: 1.25rem;
    letter-spacing: 0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }

  .speakers-grid {
    gap: 1rem;
  }

  .speaker-card {
    padding: 1rem;
    border-radius: 10px;
    border-left-width: 3px;
  }

  .speaker-image {
    width: 90px;
    height: 90px;
    margin-bottom: 0.8rem;
  }

  .speaker-name {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .speaker-bio {
    font-size: 0.9rem;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
  }
}