body {
    font-family: Arial, sans-serif;
}

.hero {
    background: linear-gradient(to right, #f6f3ed, #fdfcfb);
    padding: 10px 0px;
    text-align: center;
}

.hero h1 {
    font-weight: bold;
    color: #5c2d0d;
}

.hero p {
    font-size: 1.2rem;
}

.date-box {
    background-color: #ffe9e3;
    padding: 10px 20px;
    display: inline-block;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

.highlights,
.cards,
.calendar {
    padding: 40px 20px;
}

.highlight-bar {
    background-color: #ff6600;
    color: white;
    padding: 8px 16px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.card img {
    height: 200px;
    object-fit: cover;
}

footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
}

.btn-primary {
    background-color: #0056d2;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #0056d2;
    text-decoration: underline;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-brand {
    margin-right: 40px;
}


/* Carasoul */


/* Gallery sestion */
body {
  margin: 0;
  font-family: Verdana, sans-serif;
  background: #f9f9f9;
  color: #333;
}
section#speakers {
  padding: 8px 0;
  max-width: 1200px;
  margin: 0 auto;
}
h2 {
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 2rem;
}
.gallery-container {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  background: #fff;
}
.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px;
  scrollbar-width: none; /* Firefox */
}
.gallery-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
  scroll-snap-align: start;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.gallery-item-content {
  padding: 16px;
  flex-grow: 1;
}
.gallery-item-content h3 {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-item-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* nav bar */
