@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
* a {
  color: inherit;
  text-decoration: none;
}
* ul li {
  list-style-type: none;
}

body {
  width: 100%;
  overflow-x: hidden;
}

#info-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  max-width: 320px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  z-index: 9999;
  animation: slideUp 0.6s ease;
  overflow: hidden;
}

.info-content {
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  position: relative;
}

.info-icon {
  font-size: 20px;
  margin-right: 12px;
  margin-top: 4px;
}

.info-text {
  flex-grow: 1;
  color: rgb(0, 0, 0);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 16px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #333;
}

nav {
  padding: 0 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav .logo {
  width: 200px;
  height: 200px;
}
nav .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0.9);
}
nav ul {
  display: flex;
  gap: 20px;
}
nav ul li a {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a:hover {
  color: #a89744;
}
nav .burger {
  display: none;
}

@media screen and (max-width: 768px) {
  nav {
    justify-content: space-between;
  }
  nav .logo {
    width: 100px;
    height: 100px;
  }
  nav ul {
    display: none;
  }
  nav .burger {
    display: block;
    cursor: pointer;
    height: auto;
  }
  nav .burger div {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #a89744;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
}
footer {
  background: #424242;
  height: 300px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer h3 {
  color: #a89744;
}
footer a {
  color: white;
}
footer a img {
  width: 200px;
  height: auto;
  border-radius: 100%;
}
footer .coordonnees, footer .menu {
  color: white;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
footer .coordonnees ul, footer .menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .coordonnees ul a, footer .menu ul a {
  color: white;
  transition: all 0.3s ease;
}
footer .coordonnees ul a:hover, footer .menu ul a:hover {
  color: #a89744;
}

header {
  height: 595px;
  background: url("../images/hero.jpg") center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
header h2 {
  font-size: 62px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.36);
  z-index: 2;
  color: #fff3e9;
  font-family: "Crimson Text", serif;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  line-height: 22px;
  font-weight: 400;
}
header h2 span {
  font-size: 30px;
  text-transform: capitalize;
  font-style: italic;
}
header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 595px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 1000px;
  margin: 80px auto;
}
.services .cours-pensions-evenements {
  display: flex;
  gap: 30px;
}
.services .cours-pensions-evenements p {
  color: #a89744;
  text-transform: uppercase;
  font-weight: 500;
}
.services .title {
  display: flex;
  flex-direction: column;
  font-size: 56px;
}
.services .title .line-text {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.services .title .line-text .line {
  width: 100px;
  height: 1px;
  background: #a89744;
  margin-right: 20px;
}
.services .description {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.services .description .colum-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
}
.services .description .colum-description .number {
  color: #a89744;
  font-size: 24px;
}
.services .description .colum-description h4 {
  font-size: 26px;
  font-weight: 500;
}
.services .description a {
  color: #a89744;
  font-weight: 600;
}
.services .description .description {
  color: #888888;
}

.presentation {
  width: 1200px;
  height: 300px;
  display: flex;
  margin: 80px auto;
}
.presentation .photos {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.presentation .photos .deux-photos {
  display: flex;
  flex-direction: column;
  width: 45%;
  height: 100%;
  justify-content: space-between;
}
.presentation .photos .deux-photos img {
  max-width: 100%;
  max-height: 45%;
  -o-object-fit: cover;
     object-fit: cover;
}
.presentation .photos .une-photo {
  display: flex;
  flex-direction: column;
  width: 45%;
  height: 100%;
}
.presentation .photos .une-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.presentation .description {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
  padding-left: 40px;
}
.presentation .description h3 {
  color: #a89744;
  font-size: 40px;
  font-weight: 500;
}
.presentation .description p {
  width: 75%;
  color: #888888;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
}

.parralax {
  width: 100vw;
  height: 300px;
  margin: 80px 0;
  background: url("../images/background.jpg") center/cover fixed;
}

.planning h3 {
  text-align: center;
  color: #a89744;
  font-size: 40px;
  font-weight: 500;
}
.planning table {
  width: 75%;
  margin: 80px auto;
  border-collapse: collapse;
}
.planning table th,
.planning table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
}
.planning table tbody td {
  color: white;
}

@media screen and (max-width: 768px) {
  header {
    height: 400px;
    overflow: hidden;
  }
  header h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    line-height: normal;
    text-align: center;
  }
  header video {
    height: 400px;
  }
  .services {
    width: 100%;
    text-align: center;
  }
  .services .cours-pensions-evenements {
    gap: 1rem;
    justify-content: center;
  }
  .services .title {
    font-size: 2rem;
    text-align: center;
  }
  .services .title .line-text {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .services .title .line {
    display: none;
  }
  .services .description {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .presentation {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
  }
  .presentation .photos {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .presentation .photos .deux-photos, .presentation .photos .une-photo {
    width: 100%;
  }
  .presentation .description {
    margin-top: 4rem;
    width: 100%;
    padding: 0;
    align-items: center;
    text-align: center;
  }
  .planning {
    max-width: 100vw;
    overflow: hidden;
  }
  .planning table {
    max-width: 100%;
    font-size: 0.8rem;
  }
  .planning table th, .planning table td {
    padding: 5px;
  }
  footer {
    height: auto;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 0;
  }
  footer .coordonnees {
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  footer .menu {
    display: none;
  }
}/*# sourceMappingURL=style-theme.css.map */