@charset "UTF-8";
/* CSS Document */
body {
  margin: 0;
  background-color:black;
  color: black;
  font-family: Arial, sans-serif;
  padding-top: 30px; 
}


nav {
  width: 100%;
  background-color: rgba(0, 0, 0, 0); /* transparent */
  color: white;
  padding: 0.5rem 1.2rem; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  font-family:"Times New Roman", "serif"; 
  font-size: 1.1rem;
}

.logo {
  flex: 1;
  font-weight:none;
  font-size: 1.4rem;
}

nav ul {
  flex: 2;
  display: flex;
  justify-content: center;  /* ✅ center the links */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
transform: translateX(-27%); /* <<< shift a little to the left */
}

nav a {
  color:white;
  text-decoration: none;
  font-weight: none;
}

nav a.active {
  border-bottom: 1px solid white; 
  padding-bottom: 5px;            
}



.slideshow-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
  outline: none; /* remove focus outline */
  cursor: grab;
  overflow-y: visible; /* allow vertical overflow if needed */
  padding-bottom: 45px;
}

.slideshow-container:active {
  cursor: grabbing;
}

/* Hide scrollbar */
.slideshow-container::-webkit-scrollbar {
  display: none;
}

.slide {
  position: relative;
  flex: 0 0 auto;
  width: 1120px;
  height: 630px;
  cursor: pointer;
  border-radius: 0px;
  overflow: visible;
  box-shadow: 0 0 0px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.slide:hover img {
  transform: scale(1.05);
}


.title-card {
  margin-top:25px;
  font-size: 18px;
  font-family:Arial, sans-serif;               /*"Courier New", Courier, monospace; */
  color: white;
  user-select: none;
  text-align: center
}