body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #1FA2FF, #12D8FA, #A6FFCB);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Open Sans", sans-serif;
}

#nav-bar {
    height: 60px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
    background-color: #1C1C1C;
    color: white;
    padding-right: 10px;
}

#nav-bar-2 {
    font-style: italic;
    height: 45px;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    background-color: #4C4D4B;
    border-bottom: 2px solid #edede9;
    padding-left: 15px;
}
a{
  color: white;
  text-decoration: none;
}

.image-box {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative; 
}

.image-content {
  position: relative;
}

/* 👇 Only zoom the image, not the overlay */
.image-content img {
  width: 100%;
  height: 600px;
  display: block;
  border-radius: 25px;
  transition: transform 0.4s ease;
}

.image-box:hover .image-content img {
  transform: scale(1.1); /* Only the image zooms */
}

/* Fixed-position overlay */
.overlay-content {
  position: absolute;
  bottom: 30px;
  left: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 20px 25px;
  border-radius: 15px;
  text-align: left;
}

.overlay-content h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.overlay-content button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #00b4d8;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.overlay-content button:hover {
  background-color: #0077b6;
}

#slide {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#slide span {
    background: #333333;
    color: white;
    padding: 10px 30px;
}

.button-left {
    border: none;
    border-radius: 100px 0 0 100px;
    background: #333333;
    color: white;
    padding-left: 20px;
}

.button-right {
    border: none;
    border-radius: 0 100px 100px 0;
    background: #333333;
    color: white;
    padding-right: 20px;
}

#footer {
    background-color: #1C1C1C;
    border-radius: 100px 100px 0 0;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    color:white;
}

#footer span {
  background-color: #1C1C1C;
  border-radius: 50px;
  padding: 10px 20px;
  color: aliceblue;
  color:white;
}

.footer-info {
  display: flex;
  justify-content: space-evenly;
  background-color: #1C1C1C;
}

.footer-info div {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  color:white;
}

ul {
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
  color:white;
}

li {
  margin: 10px 0;
  color:white;
}
