@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/background2.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;
}

header {
  position: relative;
  width: 100vw;
  height: auto;
  padding: 1vw 2vw;
  background: transparent;
  z-index: 100;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(0, 153, 168, 0.3));
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, transparent, #0099A8, #D64B91) 1;
  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: 250px;
  height: auto;
}

/* Header Navigation */
.header-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-nav .nav-link {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-nav .nav-link:hover {
  color: #D64B91;
  background: rgba(255, 255, 255, 0.1);
}

.header-nav .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #0099A8, #007a87);
}

/* 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: #D64B91;
}

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;
}

/* Logo Bausch + Lomb */
.logo-bausch {
  width: 280px;
  max-width: 20vw;
  margin-bottom: 1vw;
}

.logo-bausch img {
  width: 100%;
  height: auto;
}

/* Event Title */
.event_title {
  position: relative;
  width: 44vw;
  height: auto;
  text-align: center;
  color: #fff;
  margin-bottom: 1vw;
}

.event_title h1 {
  font-size: 2.5vw;
  font-weight: 300;
  margin: 0;
  line-height: 1.3;
}

.event-title-img {
  width: 100%;
  height: auto;
  max-width: 720px;
  display: block;
  margin: 0 auto;
}

.event_title h1 .smart {
  color: #D64B91;
  font-weight: 600;
}

.event_title h1 .oculaire {
  color: #D64B91;
}

.registration_form {
  position: relative;
  width: 100%;
  max-width: 45vw;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 1vw;
}

.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: #0099A8;
  box-shadow: 0 0 0 0.2rem rgba(0, 153, 168, 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: 1vw;
  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: #D64B91;
}

.event_date .date .year {
  color: #D64B91;
}

.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: #0099A8;
  text-decoration: underline;
}

.registration_form .form-check-label a:hover {
  color: #D64B91;
}

.registration_form .form-check-input {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: #0099A8;
}

.registration_form .form-check-input:checked {
  background-color: #0099A8;
  border-color: #0099A8;
}

.registration_btn {
  width: 250px;
  height: 60px;
  background: url('../images/registration_btn.png') no-repeat;
  background-size: contain;
  background-position: center;
  padding: 0;
  margin: 0;
  margin-top: 1vw;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: block;
}

.accueil-bottom .registration_btn {
  width: 250px;
  height: 60px;
  margin-top: 0.5vw;
}

.registration_btn:hover {
  opacity: 0.85;
}

.footer1 {
  width: 100vw;
  height: 1vw;
  background: linear-gradient(to right, #0099A8, #D64B91);
}

.footer2 {
  width: 100vw;
  height: 2vw;
  background-color: #1E2A3A;
}

/* RESPONSIVE */
@media screen and (max-width: 1139px) {
  .event_title {
    width: 44vw;
  }

  .event_title h1 {
    font-size: 2.8vw;
  }

  .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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 153, 168, 0.15));
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #0099A8, #D64B91) 1;
    pointer-events: none;
  }

  .header-container {
    justify-content: center;
    position: relative;
  }

  .header-logo {
    margin: 10px auto;
  }

  .header-logo img {
    max-width: 170px;
  }

  .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(0, 40, 80, 0.98), rgba(0, 60, 100, 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: 1rem;
  }

  .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 {
    width: 75vw;
  }

  .event_title h1 {
    font-size: 3vw;
  }

  .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: 80vh;
    justify-content: space-between;
    padding: 3vh 0 5vh;
    gap: 0;
  }

  .logo-bausch {
    max-width: 35vw;
  }

  .event_title {
    width: 95vw;
    margin: 0 auto;
  }

  .event_title h1 {
    font-size: 4.8vw;
    line-height: 1.3;
  }

  .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: 2vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .accueil-bottom .registration_btn {
    width: 230px;
    height: 55px;
    margin: 4vh auto 0;
  }

  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: 95vw;
    margin: 0 auto;
  }

  .event_title h1 {
    font-size: 5vw;
    line-height: 1.3;
    white-space: nowrap;
  }

  .event_title h1 br {
    display: block;
    content: "";
    margin-top: 0;
  }

  .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: 80vh;
    justify-content: space-between;
    padding: 2vh 0 20vh;
    gap: 0;
  }

  .accueil-bottom {
    position: relative;
    margin: 0;
    padding-bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .accueil-bottom .registration_btn {
    width: 230px;
    height: 55px;
    margin: 3vh auto 0;
  }

  .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, #0099A8, #007a87);
  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, #D64B91, #b03d7a);
  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-title {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border-bottom: 3px solid #D64B91;
  padding-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.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, #9D417B 0%, #006EB4 100%);
}

.gradient-blue-magenta {
  background: linear-gradient(90deg, #006EB4 0%, #9D417B 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-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 #D64B91;
  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) {
  .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-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 {
    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-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;
  }

  .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;
  }
}