
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  text-align: center;
  background-color: #d4e2eb;
  color: #333;
  line-height: 1.6;
}

.nav-bar {
  background-color: #0077b6;
  display: flex;
  justify-content: right;
  gap: 40px;
  padding: 15px 0;
}

.nav-bar a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-bar a:hover {
  color: #ffb347;
}

html {
  scroll-behavior: smooth;
}


header, .header {
  text-align: center;
  background-color: #fff;
  padding: 40px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content h1 {
  font-size: 2.5em;
  color: #ff6f3c;
}

.header-content h2 {
  font-weight: 400;
  margin-bottom: 20px;
}

.header-img {
  width: 80%;
  max-width: 800px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


#Eat {
  text-align: center;
  padding: 50px 20px;
  background-color: #67a2b7;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#Eat h1 {
  font-size: 2.5rem;
  color: #ff6f3c;
  margin-bottom: 10px;
}

#Eat h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 20px;
}

.description.resto {
  background-color: #fff8f0;
  border-left: 5px solid #0077b6;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin: 0 auto 30px auto;
  max-width: 800px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.description.resto:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#Eat img {
  display: block;
  margin: 20px auto;
  width: 80%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#Eat img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.restaurant {
  background-color: #fff;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.restaurant h3 {
  color: #ff6f3c;
  margin-bottom: 10px;
}

.restaurant p {
  color: #333;
  margin-bottom: 10px;
  font-size: 1rem;
}


#Sleep.lucas {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #f5f6fa;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: "Arial", sans-serif;
}


#Sleep .chat {
    text-align: center;
    color:#0077b6 ;
}


#Sleep .chat h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    letter-spacing: 1px;
}


#Sleep img {
  display: block;
  margin: 20px auto;
  width: 80%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#Sleep img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hotel-title {
  text-align: center;
  font-size: 1.3rem;
  color: #ff6f3c;
  font-weight: bold;
  margin: 20px 0;
}

#Sleep .buttons button {
  background-color: #0077b6;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 25px;
  margin: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

#Sleep .buttons button:hover {
  background-color: #005f8a;
}

#Sleep .calendar input[type="date"] {
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-left: 10px;
}


#Explore {
  padding: 50px 9px;
  text-align: center;
  background-color: #67a2b7;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#Explore h1 {
  font-size: 2.5rem;
  color: #ff6f3c;
  margin-bottom: 20px;
}

#Explore .encadre {
  background-color: #fff;
  border-left: 5px solid #0077b6;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin: 0 auto 30px auto;
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#Explore .encadre:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#Explore .image-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

#Explore .image-container img {
  width: 40%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#Explore .image-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}





#Events {
  text-align: center;
  background-color: #e6e9ea;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 40px 20px;
}

#Events h1 {
  font-size: 2.5rem;
  color: #ff6f3c;
  margin-bottom: 20px;
  font-weight: bold;
}

.h2-pomme h2 {
  font-size: 2rem;
  color: #0077b6;
  font-weight: 600;
  margin: 20px 0;
}

.description {
  text-align: center;
  font-size: 1.4rem;
  color: #000;
  margin: 20px auto;
}

.description h3 {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 15px;
}

.description-sydney {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  padding: 1rem;
  border-left: 4px solid #0077b6;
  border-radius: 8px;
}


.carousel {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 2em auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.event-card {
  min-width: 100%;
  padding: 1em;
  text-align: center;
}

.event-card img {
  object-fit: cover;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.event-card-title {
  font-size: 1.2rem;
  color: #0077b6;
  text-align: center;
  margin: 10px 0;
  font-weight: bold;
  line-height: 1.4;
}

.event-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #0a0a0a;
  margin-bottom: 10px;
  text-align: center;
}



.see-more {
  display: inline-block;
  margin-top: 30px;
  background-color: #ff6f3c;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.see-more:hover {
  background-color: #ff844d;
  transform: scale(1.05);
}


footer {
  background-color: #0077b6;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
