@charset "UTF-8";
body {
  margin: 0;
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 1.5rem 0;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #a67c52;
  margin-top: 10px;
}

p {
  font-size: 1.05rem;
  color: #444;
  max-width: 700px;
}

a {
  text-decoration: none;
  color: #000;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  border-bottom: none;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem 0.6rem;
}
.header .logo {
  height: 50px;
}
.header {
  /* NAV */
}
.header .nav a {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.header .nav {
  display: none;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
  background: white;
  text-align: center;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.header .nav a {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  color: dimgrey;
}
.header .nav.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.header {
  /* HAMBURGER */
}
.header .hamburger {
  width: 25px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
.header .hamburger span {
  display: block;
  height: 3px;
  background: dimgrey;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.header .hamburger {
  /* ✅ Animation to cross */
}
.header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header .nav-item {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: static;
}
.dropdown-toggle svg {
  width: 14px;
  height: 14px;
}

/* hidden by default */
.header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  min-width: max-content;
  padding: 0.4rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: all 0.2s ease;
}

.header .dropdown-menu {
  overflow: hidden;
}

.header .dropdown-menu a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  margin: 0;
  text-align: left;
  border-radius: 0;
}

.header .dropdown-menu a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.header .dropdown-menu a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.header .dropdown-menu a:hover {
  background: #f5f5f5;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .header .hamburger {
    display: none;
  }
  .header .nav {
    display: flex !important;
    position: static;
    width: auto;
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
    background: transparent;
  }
  .header .nav a {
    border: none;
    margin-left: 1rem;
    color: black;
  }
  .header .nav .nav a {
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .header .nav .lang {
    color: white;
  }
  .header .nav .lang .lang-dropdown {
    background: white;
  }
  .header .nav .lang .lang-dropdown a {
    color: dimgray;
  }
}
.lang-switch {
  margin-left: 1rem;
  font-size: 0.8rem;
}
.lang-switch a {
  color: white;
  text-decoration: none;
}

.lang {
  position: relative;
  margin-left: 0rem;
  margin-right: 0.3rem;
  font-size: 0.8rem;
  cursor: pointer;
  color: dimgray;
  display: flex;
  align-items: center;
}
.lang .lang-current {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lang i {
  width: 16px;
  height: 16px;
}
.lang .lang-arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}
.lang .lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: white;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: all 0.2s ease;
}
.lang .lang-dropdown a {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  text-decoration: none;
  color: dimgray;
}
.lang .lang-dropdown a:hover {
  background: #f5f5f5;
}
.lang .active {
  font-weight: 600;
  padding: 0.2rem 0 0 0;
  color: #a67c52;
}
.lang:hover .lang-dropdown, .lang.open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-globe {
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  .nav {
    display: flex !important;
    position: static;
    background: transparent;
    opacity: 1;
    transform: none;
    align-items: center;
    text-align: left;
  }
  .nav {
    gap: 1rem;
  }
  .nav a,
  .dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    border: none;
    color: black;
  }
  .nav-item {
    position: relative;
  }
  .header .dropdown-menu a {
    padding: 0.5rem 1rem;
    margin: 0;
  }
  /* ✅ IMPORTANT: NO horizontal transform tricks */
  .header .dropdown-menu {
    left: 0;
    transform: translateY(-5px);
  }
  .nav-item:hover .dropdown-menu {
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .dropdown-toggle {
    display: none;
  }
  .header .dropdown-menu {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .header .dropdown-menu a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: dimgrey;
    text-align: center;
  }
  .nav-item:hover .header .dropdown-menu {
    display: block;
  }
}
.hero {
  position: relative;
  min-height: 100svh;
  background: url("../assets/images/LisaSabbe-Main.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 100px 20px 60px;
  overflow: hidden;
  clip-path: ellipse(120% 100% at 50% 0%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15), transparent 70%);
  pointer-events: none;
}
.hero .hero-content {
  position: relative;
  max-width: 700px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #a67c52;
}
.hero .hero-content p {
  color: white;
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}
.hero .btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  background: #a67c52;
  color: white;
  border-radius: 4px;
}

.floating-social {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
}
.floating-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background-clip: padding-box;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
  transform-origin: center;
  will-change: transform;
}
.floating-social a:hover {
  transform: scale(1.3);
}
.floating-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  background: #25D366;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
}

.whatsapp-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.section {
  padding: 6rem 1rem;
}
.section.alt {
  background: #f8f8f8;
}
.section h2 {
  margin-bottom: 2rem;
  line-height: 1.2;
  color: dimgray;
}
.section .second-part {
  display: block;
}
.section .section-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section .section-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.section .section-text {
  max-width: 600px;
}
.section .section-text h2 {
  margin-bottom: 1.5rem;
}
.section .section-text p {
  margin-bottom: 1.2rem;
}
.section .section-text:nth-child(even) .section-image img {
  transform: translateY(20px);
}
@media (min-width: 768px) {
  .section .section-grid {
    flex-direction: row;
    align-items: center;
  }
  .section .section-grid:nth-child(even) {
    flex-direction: row-reverse;
  }
  .section .section-image,
  .section .section-text {
    flex: 1;
    position: relative;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.gallery-grid img {
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
}
.contact-form button {
  padding: 0.8rem;
  background: #a67c52;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .contact-grid {
    flex-direction: row;
    align-items: flex-start;
  }
  .contact-info,
  .contact-form {
    flex: 1;
  }
}
#form-success {
  color: green;
  font-weight: 500;
  margin-top: 1rem;
}

@media (max-height: 700px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .whatsapp-btn {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero {
    clip-path: ellipse(180% 100% at 50% 0%);
  }
}
.footer {
  text-align: center;
  padding: 0.5rem;
  background: #111;
}
.footer p {
  color: grey;
}

.footer a {
  color: white;
}/*# sourceMappingURL=main.css.map */