@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hero {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  min-height: 80vh;
  perspective: 1000px;
}

.hero h1 {
  font-family: var(--font-family-primary);
  font-size: 5rem;
  text-align: center;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--dark);
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
    top: 10%;
  }
}

.hero span {
  display: block;
  width: 100%;
  font-family: var(--font-family-primary);
  font-size: 2rem;
  text-align: center;
  position: absolute;
  top: 23%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--dark);
}
@media (max-width: 768px) {
  .hero span {
    font-size: 1.8rem;
  }
}

/* Parallax */
.layer {
  min-height: 80vh;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: fixed;
  z-index: -1;
}

.layer__1 {
  background-image: url("../img/ciel.webp");
  background-position: top center;
}

.layer__3 {
  background-image: url("../img/fond.webp");
  background-position: top center;
}

.layer__4 {
  background-image: url("../img/haies.webp");
  background-position: top center;
}

.layer__5 {
  background-image: url("../img/garden.webp");
  background-position: top center;
}

.linear-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.tagline h2 {
  font-family: var(--font-family-primary);
  color: var(--light);
  font-size: 2.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .tagline h2 {
    font-size: 2rem;
  }
}
.tagline .tagline-span {
  display: block;
  width: 90%;
  margin: 1rem auto;
  font-family: var(--font-family-primary);
  color: var(--light);
  font-size: 1.5rem;
  text-align: center;
}
.tabs-container {
  color: var(--light);
  width: 90vw;
  margin: 2rem auto;
  transform: translateY(100px);
}
@media (max-width: 768px) {
  .tabs-container {
    width: 95vw;
    margin: 0 auto;
  }
}

.tabs {
  display: flex;
  justify-content: flex-end;
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
}
.tabs div {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .tabs {
    display: block;
  }
  .tabs div {
    justify-content: space-between;
  }
}
.tabs span {
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--light-opacity);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .tabs span {
    margin-top: 2rem;
    padding: 0.5rem 1rem;
  }
}
.tabs span.active {
  border-bottom: 1px solid var(--light);
}
.tabs span:hover {
  cursor: pointer;
  border-bottom: 1px solid var(--light);
  transition: all 0.3s ease;
}

/* CONTENU TABS */
.tab-content {
  position: relative;
  margin-top: 2rem;
}

.tab-content__item {
  position: relative;
  font-family: var(--font-family-primary);
  font-size: 6rem;
  line-height: 8rem;
  color: var(--light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  overflow: hidden;
  height: 8rem; /* Correspond à la hauteur exacte de la ligne */
  /* Texte par défaut, en dehors de la vue en bas */
}
.tab-content__item .textes {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap; /* Empêche le texte de se casser */
}
@media (max-width: 768px) {
  .tab-content__item {
    font-size: 1.5rem;
    line-height: 2rem;
    height: 2rem;
  }
}

.tab-content__item .active {
  opacity: 1;
}

.img-transition-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  z-index: -1;
}
.img-transition-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  filter: blur(4px);
}
.img-transition-wrapper .clone-image {
  opacity: 0;
}

/* Styles du formulaire de contact */
.contact-form {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

/* Ajout d'espace pour le h2 près du formulaire */
section:has(.contact-form) {
  padding-top: 6rem;
}
section:has(.contact-form) .tagline {
  margin-bottom: 5rem;
}
section:has(.contact-form) .tagline h2 {
  line-height: 1.4;
  max-width: 80%;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}
.form-group label {
  display: block;
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  font-family: var(--font-family-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a77c;
  background-color: rgba(255, 255, 255, 0.15);
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 240, 229, 0.5);
}

.field-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--light-opacity);
  margin-top: 0.5rem;
  font-style: italic;
}
.field-hint.highlight {
  color: #c9a77c;
  font-weight: 500;
}

.optional {
  font-size: 0.85rem;
  color: var(--light-opacity);
  font-weight: normal;
}

.radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.radio-option input[type=radio] {
  width: auto;
  margin: 0;
}
.radio-option label {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 1rem;
}

.form-submit {
  text-align: center;
  margin-top: 3rem;
}

.submit-btn {
  background-color: #56453F;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-family-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background-color: #b89468;
  transform: translateY(-2px);
}
.submit-btn:active {
  transform: translateY(0);
}

.under-form {
  margin-top: 3rem;
  color: var(--light);
}
.under-form h2 {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  font-family: var(--font-family-primary);
}
.under-form p {
  width: 90%;
  margin: 1rem auto;
  text-align: left;
  font-size: 1.2rem;
  font-family: var(--font-family-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  section:has(.contact-form) {
    padding-top: 4rem;
  }
  section:has(.contact-form) .tagline {
    margin-bottom: 3rem;
  }
  section:has(.contact-form) .tagline h2 {
    max-width: 95%;
  }
  .contact-form {
    padding: 1.5rem;
    margin: 2rem auto;
  }
  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Styles du footer */
.site-footer {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: var(--light);
  padding: 4rem 0 0;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer h3 {
  font-family: var(--font-family-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #c9a77c;
}
.site-footer h4 {
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #c9a77c;
  position: relative;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 1px;
  background-color: rgba(201, 167, 124, 0.5);
}
.site-footer p {
  font-family: var(--font-family-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--light-opacity);
}
.site-footer a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #c9a77c;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-section.brand p {
  max-width: 80%;
}
.footer-section.links ul {
  list-style: none;
  padding: 0;
}
.footer-section.links ul li {
  margin-bottom: 1rem;
}
.footer-section.links ul li a {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  display: block;
}
.footer-section.links ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}
.footer-section.links ul li a:hover::before {
  transform: translateX(3px);
}
.footer-section.links ul li a:hover {
  text-decoration: underline;
}
.footer-section.contact address {
  font-style: normal;
}
.footer-section.contact address p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-section.contact address p i {
  color: #c9a77c;
  font-size: 1.1rem;
}
.footer-section.contact address p a {
  font-size: 1.1rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.footer-bottom .legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1rem;
}
.footer-bottom .legal-links a {
  font-size: 0.9rem;
  color: var(--light-opacity);
}
.footer-bottom .legal-links a:hover {
  color: #c9a77c;
}
.footer-bottom .copyright {
  font-size: 0.85rem;
  color: var(--light-opacity);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-container .footer-section.brand {
    grid-column: 1/-1;
    text-align: center;
  }
  .footer-container .footer-section.brand p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 0;
    margin-top: 4rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    margin-top: 2rem;
  }
  .footer-bottom .legal-links {
    flex-direction: column;
    gap: 1rem;
  }
}
:root {
  --dark: #56453F;
  --light: #F0F0E5;
  --font-family-primary: "Playfair Display", serif;
  --font-family-secondary: "Source Sans 3", sans-serif;
  --dark-opacity: rgba(86, 69, 63, 0.5);
  --light-opacity: rgba(240, 240, 229, 0.5);
}

body {
  background-color: #000;
}

.bi {
  font-weight: 700;
  font-style: italic;
}

.arrow-link {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  z-index: 100;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=base.css.map */
