/* General */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #000;
}

.hamburger {
  display: none; 
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; /* your known navbar height */
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.94);
  border-top: 1px solid #ddd;
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  display: block;
}

.mobile-lang {
  display: flex;
  gap: 10px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4%;
  gap: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* subtle depth */
}

.nav-left a {
  text-decoration: none;
  color: black;
  margin-right: 20px;
  font-weight: 500;
}

.nav-left a:hover {
  text-decoration: underline;
}

/* Right side of navbar: language + contact button */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto; /* push to the far right */
}

/* Language selector wrapper to keep label + select compact */
.lang-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #000;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag {
  width: 24px;
  height: auto;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.flag:hover {
  transform: scale(1.1);
}

.lang-switch-inline {
  display: inline-flex;         /* keeps flags on same line */
  align-items: center;
  gap: 6px;
  margin-left: 8px;             /* spacing from text */
  vertical-align: middle;
}

/* Contact button */
.nav-right .btn-black {
  background-color: black;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  margin-left: 8px;
}

/* Hover states */
a.btn-black:hover {
  background-color: #555454;
}

/* Banner */
.banner {
  margin-top: 62px; /* adjust if your navbar is taller or shorter */
  height: 500px;
  position:relative;
  background-image: url("images/chalets-1b.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner img.logo {
position:absolute;
left:46%;
top:8%;
}

/* Main content */
.content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 10%;
  gap: 50px;
  background: #78B2E1;
  background: linear-gradient(310deg, rgba(120, 178, 225, 1) 0%, rgba(255, 255, 255, 1) 100%);

}
.content iframe{
   width:100%;
}
.services {
  flex: 1;
}

.services h2 {
  margin-bottom: 15px;
}

.services ul {
  list-style-type: none;
  padding: 0;
}

.services li {
  padding: 8px 0;
  border-bottom: 1px solid #ffffff;
}

.services li a:hover {
padding-left:8px;
}

.services li span a:hover {
  padding:0px 0px;
}

.services li a {
text-decoration:none;
color: #000000;
}

/* Contact box */
.contact-box {
  flex: 1;
  border: 1px solid #ccc;
  padding: 25px 20px 30px 20px;
  border-radius: 6px;
background: #78B2E1;
background: linear-gradient(310deg, rgb(230 230 230) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.contact-box h2 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
}

.contact-box p {
  margin: 10px 0;
}

.contact-box img {
width:23px;
vertical-align:middle;
padding:0 0;
margin:0 0;
}

.contact-box .btn-black {
  display: inline-block;
  margin-top: 25px;
  background-color: black;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  margin-left: 0px;
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.contact-content {
  flex: 1;
}

.contact-image img {
  width: 200px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  border:1px solid rgb(225 225 225);
}

.service-details {
  padding: 50px 10%;
  border-top: 1px solid #ddd;
  margin-top: 0px;
  background-color: #fafafa;
}

.service-details h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 50px;
  color: #000;
}

/* Layout for each service item */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}

.service-item img {
  width: 160px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border:6px solid #cdeefcdd;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  margin-top: 0px;
  color: #000;
  padding-left: 20px;
  margin-bottom: 10px;
}

.service-text ul {
  list-style-type: disc;
  margin-left: 0px;
  line-height: 1.6;
}

.service-text li {
  margin-bottom: 6px;
}

/* À propos de nous */
.a-propos {
  padding: 60px 10%;
  background-color: #fafafa; /* cohérent avec .service-details */
  border-top: 1px solid #ddd;
}

.a-propos .container {
  max-width: 1200px;
  margin: 0 auto;
}

.a-propos h2 {
  text-align: center;
  font-size: 26px;
  color: #000;
  margin-bottom: 40px;
}

.a-propos p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 20px;
}

.a-propos strong {
  color: #3d3d3d;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #555;
}

/* Responsive: stack vertically on smaller screens */
/* Laptops: 1200px and below */
@media (max-width: 1440px) {
  .banner {
    height: 400px;
  }
}
@media (max-width: 900px) {
  .content {
  padding: 30px 5%;
}
.banner {
  height: 250px;
  background-image: url("images/chalets-1c.jpg");
}
  .banner img.logo {
width:130px;
position:absolute;
left:53%;
top:4%;
}
  .service-details {
  padding: 50px 5%;
}
  .contact-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-image {
    margin-top: 15px;
  }

  .contact-image img {
    width: 100%;
    max-width: 300px;
  }
  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-text ul {
    margin-left: 0;
    text-align: left;
  }

  .service-text h3 {
    border-left: none;
    padding-left: 0;
    padding-bottom: 6px;
  }
}

@media (max-width: 768px) {
  .nav-left a { display: none; }
  .hamburger { display: block; }
  body.menu-open .mobile-menu {
    display: flex;
	background: rgba(255, 255, 255, 0.95);
  }
.banner img.logo {
width:120px;
position:absolute;
left:55%;
top:8%;
}
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .content {
    flex-direction: column;
  }
  .content iframe {
   width:100%;
  }

  .nav-left, .nav-right {
    gap: 8px;
  }

  .nav-left a { margin-right: 12px; }
}
@media (max-width: 600px) {
 .banner {
     height: 220px;
  background-image: url("images/chalets-1a.jpg");
}
  .banner img.logo {
width:100px;
position:absolute;
left:44%;
top:8%;
}
}