/* ========================================
   BASIS STYLING (mobile first)
   ======================================== */
body {
  font-family: "Libre Bodoni", serif;
  color: #333;
  margin: 0;
  background-color: #b9a281;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 100%;
  margin-bottom: 0.5em;
  color: #2c2c2c;
}

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

.responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

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

/* ========================================
   BREAKPOINT MOBILE
   ======================================== */

@media screen and (max-width:600px) {

/* ========================================
   HEADER & NAV
   ======================================== */
header {
  background-color: #b9a281;
  padding: 1rem 0;
  position: relative;

}
.logo {
	display: flex;
	flex-direction: row;

}
header .logo img {
	height: 15vh;
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2em;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 5em 6em 0 auto;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #2c2c2c;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger -> kruisje */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobiele navigatie (verborgen standaard) */
.main-nav {
  position: absolute;
  top: 19.5vh; /* hoogte header */
  left: 0;
  width: 100%;
  background: #2c2c2c;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 500;
}

.main-nav ul {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #d1c6a3;
}

/* Nav open state */
.main-nav.active {
  max-height: 400px; /* genoeg ruimte om smooth uit te klappen */
}

/* ========================================
   HERO BANNER
   ======================================== */
.hero-banner {
  text-align: center;
}

.hero-banner img {
  width: 100%;
  height: 25vh;
  object-fit: cover;
  margin-top: 3em;
}

.hero-text {
  top: 15vh; 
  text-align: center;
  max-width: 90%;
}

.hero-text h1 {
  font-size: 1.6rem;
  margin: 0.5em 0;
  color: #E8c4A1;
  text-shadow: 2px 2px #2c2c2c;
}

.hero-text p {
  margin-bottom: 1.5em;
}

.content h1 {
  font-size: 1.6rem;
  text-align: center;
}

.hero-text p {
  font-size: 1.2rem;
}

.btn-green {
  display: inline-block;
  background: #1F2921;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-green:hover {
  background: #3a5144;
}

  /* ===== Einde HEADER & NAV ===== */

/* ========================================
   VIDEO PLAYER
   ======================================== */

.video-js-klein {
  width: 100%;
	margin: 0 auto;
 }

.video-js-groot {
  display: none;
}
/* ===== EIND VIDEO PLAYER ===== */

/* ========================================
   MAIN CONTENT
   ======================================== */

main h1 {
  font-size: 1.2rem;
  text-align: center;
  margin: 1vh 0 2vh 0;
}

main p {
  font-size: 1.2rem;
  text-align: center;
  margin: 0.5em 0 1em 0;
}   
.responsive-img img {
  width: 100%;
  max-height: 55vh;
  object-fit: cover;
	margin: 0 auto; 
 }
 .responsive-img p {
  max-width: 90%;
  margin: 1.2em auto 1.2em auto;
 }
main .gallery {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 15px;
  row-gap: 15px;
  justify-content: center;
  margin: 1.5em;
}
main .gallery img {
  width: 70%;
  padding-left: 2em;
}
/* ===== LIGHTBOX STYLING ===== */

.lightbox {
  display: none; 
  position: fixed;
  z-index: 1000;
  padding-top: 5vh;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
}

.lightbox-content {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain; /* zorgt dat de hele foto zichtbaar blijft */
}

/* Sluitknop */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}

/* Pijlen links/rechts */
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.lightbox .prev { left: 10%; }
.lightbox .next { right: 10%; }

.lightbox .prev:hover,
.lightbox .next:hover {
  color: #d1c6a3;
}

/* ===== EIND MAIN CONTENT ===== */

/* ========================================
   CARDS / ARTIKELS
   ======================================== */
.card {
  display: flex;
  flex-direction: column;
  /* gap: 1.5rem; */
  margin: 2rem 2rem;
}
.card-behandeling {
  display: flex;
  flex-direction: column;
  margin: 2rem 2rem;
  padding: 1rem 2rem 2rem 2rem;
  background-color: #b8a48b;
  border: 3px solid #3a5144;
}
.card-behandeling h3 {
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
}
.card-behandeling p:nth-child(2) {
  font-size: 1.6rem;
  text-align: center;
}
.card-behandeling p:nth-child(3) {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.card-behandeling li {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 1em;

}
.card-behandeling ul {
  list-style-type: circle;
  margin-bottom: 1em;
}
.extra {
 
  border: 3px solid #e8c4a1;
}

.card-text {
  flex: 1 1 auto;
  font-weight: 200;  
  font-size: 0.6rem;
}

.card-text h2 {
  font-weight: 600;
  font-size: 1.6rem;
}

.card-text a {
  text-decoration: none;
}

.card img {
  border-radius: 12px;
}

.card .polaroid {
  margin: 0 auto 2em auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card .content address {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1em;
}  

.producten .natulique {
  max-width: 90%;
  margin: 1.2em auto;
  
}

.producten .natulique a {
  text-decoration: underline;
}



/* ========================================
   FOOTER
   ======================================== */
footer {
  background-color: #2c2c2c;
  color: #eee;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

footer p {
  display: none;
}

.footer-nav li a {
  margin: 0 auto;
}

.footer-logo a img {
  max-width: 5em;
  position: absolute;
}

.footer-column ul {
  list-style: none;
  padding: 0;

}

.footer-column li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact li img {

  margin-left: 5rem;
}

.footer-column a:hover {
  color: #d1c6a3;
}

.footer-socials {
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
}

.footer-socials ul {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: space-evenly;
}
}

/* ========================================
   BREAKPOINT TABLET
   ======================================== */

/* 📱➡️💻 Tablet (min-width: 601px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero-banner img {
    height: 60vh;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .card {
    gap: 2rem;
  }

  header {
  background-color: #b9a281;
  padding: 1rem 0;
  position: relative;

}
.logo {
	display: flex;
	flex-direction: row;

}
header .logo img {
	height: 15vh;
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2em;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 5em 6em 0 auto;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 150%;
  background: #2c2c2c;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger -> kruisje */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobiele navigatie (verborgen standaard) */
.main-nav {
  position: absolute;
  top: 19.5vh; /* hoogte header */
  left: 0;
  width: 100%;
  background: #2c2c2c;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 500;
}

.main-nav ul {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #d1c6a3;
}

/* Nav open state */
.main-nav.active {
  max-height: 400px; /* genoeg ruimte om smooth uit te klappen */
}

/* ========================================
   HERO BANNER
   ======================================== */
.hero-banner {
  text-align: center;
}

.hero-banner img {
  width: 100%;
  height: 25vh;
  object-fit: cover;
  margin-top: 3em;
}

.hero-text {
  top: 15vh; 
  text-align: center;
  max-width: 90%;
}

.hero-text h1 {
  font-size: 1.6rem;
  margin: 0.5em 0;
  color: #E8c4A1;
  text-shadow: 2px 2px #2c2c2c;
}

.hero-text p {
  margin-bottom: 1.5em;
}

.content h1 {
  font-size: 1.6rem;
  text-align: center;
}

.hero-text p {
  font-size: 1.2rem;
}

.btn-green {
  display: inline-block;
  background: #1F2921;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-green:hover {
  background: #3a5144;
}

  /* ===== Einde HEADER & NAV ===== */

/* ========================================
   VIDEO PLAYER
   ======================================== */

.video-js-klein {
  width: 100%;
	margin: 0 auto;
 }

.video-js-groot {
  display: none;
}
/* ===== EIND VIDEO PLAYER ===== */

/* ========================================
   MAIN CONTENT
   ======================================== */

main h1 {
  font-size: 1.6rem;
  text-align: center;
  margin: 3vh 0 3vh 0;
}

main p {
  font-size: 1.2rem;
  text-align: center;
  margin: 0.5em 0 1em 0;
}   

.responsive-img img {
  width: 100%;
  max-height: 55vh;
  object-fit: cover;
	margin: 0 auto; 
 }
 .responsive-img p {
  max-width: 90%;
  margin: 1.2em auto 1.2em auto;
 }
main .gallery {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 15px;
  row-gap: 15px;
  justify-content: center;
  margin: 1.5em;
}
main .gallery img {
  width: 70%;
  padding-left: 2em;
}
/* ===== LIGHTBOX STYLING ===== */

.lightbox {
  display: none; 
  position: fixed;
  z-index: 1000;
  padding-top: 5vh;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
}

.lightbox-content {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain; /* zorgt dat de hele foto zichtbaar blijft */
}

/* Sluitknop */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}

/* Pijlen links/rechts */
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.lightbox .prev { left: 10%; }
.lightbox .next { right: 10%; }

.lightbox .prev:hover,
.lightbox .next:hover {
  color: #d1c6a3;
}

/* ===== EIND MAIN CONTENT ===== */

/* ========================================
   CARDS / ARTIKELS
   ======================================== */
.card {
  display: flex;
  flex-direction: column;
  /* gap: 1.5rem; */
  margin: 2rem 2rem;
}
.card-behandeling {
  display: flex;
  flex-direction: column;
  margin: 2rem 2rem;
  padding: 1rem 2rem 2rem 2rem;
  background-color: #b8a48b;
  border: 3px solid #3a5144;
}
.card-behandeling h3 {
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
}
.card-behandeling p:nth-child(2) {
  font-size: 1.6rem;
  text-align: center;
}
.card-behandeling p:nth-child(3) {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.card-behandeling li {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 1em;

}
.card-behandeling ul {
  list-style-type: circle;
  margin-bottom: 1em;
}
.extra {
 
  border: 3px solid #e8c4a1;
}

.card-text {
  flex: 1 1 auto;
  font-weight: 200;  
  font-size: 0.6rem;
}

.card-text h2 {
  font-weight: 600;
  font-size: 1.6rem;
}

.card-text a {
  text-decoration: none;
}

.card img {
  border-radius: 12px;
}

.card .polaroid {
  margin: 0 auto 2em auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card .content address {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1em;
}  

.producten .natulique {
  max-width: 90%;
  margin: 1.2em auto;
  
}

.producten .natulique a {
  text-decoration: underline;
}



/* ========================================
   FOOTER
   ======================================== */
footer {
  background-color: #2c2c2c;
  color: #eee;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

footer p {
  display: none;
}

.footer-nav li a {
  margin: 0 auto;
}

.footer-logo a img {
  max-width: 5em;
  position: absolute;
}

.footer-column ul {
  list-style: none;
  padding: 0;

}

.footer-column li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact li img {

  margin-left: 5rem;
}

.footer-column a:hover {
  color: #d1c6a3;
}

.footer-contact li {
  margin: 0 30% 0 30%;
  
}

.footer-socials {
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
}

.footer-socials ul {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: space-evenly;
}
}

/* ========================================
   BREAKPOINT DESKTOP
   ======================================== */

/* 💻 Desktop (min-width: 1025px) */
@media (min-width: 1025px) {
  /* Navigatie altijd zichtbaar op desktop */
  .hamburger {
    display: none;
  }

  .main-nav {
    position: static;
    max-height: none;
    display: flex;
    background: none;
    width: auto;
  }

  .main-nav ul {
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 0;
  }

  .hero-banner img {
    height: 60vh;
    object-fit: scale-down;
  
  }

  .hero-text h1 {
    font-size: 3rem;
    text-align: center;
  }

  .hero-text p {
    font-size: 2.5rem;
  }

  .card {
    flex-direction: row;
    align-items: center;
  }

  
  /* ========================================
   ######    DESK TOP   ######
   ======================================== */
body {
  font-family: "Libre Bodoni", serif;
  color: #333;
  margin: 0;
  background-color: #b9a281;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 100%;
  margin-bottom: 0.5em;
  color: #2c2c2c;
}

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

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

/* ========================================
   HEADER & NAV
   ======================================== */
header {
  background-color: #b9a281;
  padding: 1rem 0;
  position: relative;

}

.logo {
	display: flex;
	flex-direction: row;
  margin-bottom: 5vh;
}

.logo img {
  width: 15vh;
}

/* Mobiele navigatie (verborgen standaard) */
.main-nav {
  position: absolute;
  top: 19.5vh; /* hoogte header */
  left: 0;
  width: 100%;
  justify-content: center;
  background: #2c2c2c;
  max-height: 9vh;
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 500;
}

.main-nav ul {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 4rem;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1.6rem;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #d1c6a3;
}

/* Nav open state */
.main-nav.active {
  max-height: 400px; /* genoeg ruimte om smooth uit te klappen */
}

/* ========================================
   HERO BANNER
   ======================================== */
.hero-banner {
  text-align: center;
}

.hero-text {
  top: 15vh; 
  text-align: center;
  max-width: 90%;
}

.hero-text h1 {
  position: absolute;
  top: 8vh;
  left: 10%; 
  right: 10%;
  font-size: 2.5rem;
  margin: 0.5em 0;
  color: #E8c4A1;
  text-shadow: 2px 2px #2c2c2c;
}

.hero-text p {
  position: absolute;
  top: 4vh;
  left: 40%;
  margin-bottom: 1.5em;
  font-size: 2rem;
}

.content h1 {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 5vh;
}

.btn-green {
  position: fixed;
  display: inline-block;
  background: #1F2921;
  top: 5vh;
  right: 3vh;
  color: white;
  padding: 1rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  transition: background 0.3s;
}

.btn-green:hover {
  background: #3a5144;
}

  /* ===== Einde HEADER & NAV ===== */

/* ========================================
   VIDEO PLAYER
   ======================================== */

.video-js-klein {
  display: none;
 }

 .video-js-groot {
  width: 100%;
  margin: 0 auto;
}

/* ===== EIND VIDEO PLAYER ===== */

/* ========================================
   MAIN CONTENT
   ======================================== */

main h1 {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 5vh;
}

main p {
  font-size: 1.4rem;
  text-align: left;
  margin: 0.5em auto 1em auto;
  max-width: 80%;
}   
.responsive-img img {
  width: 100%;
  max-height: 55vh;
  object-fit: scale-down;
	margin: 0 auto; 
 }
 .responsive-img p {
  max-width: 75%;
  margin: 1.2em auto 1.2em auto;
 }
main .gallery {
  display: grid;
  grid-template-columns: auto auto auto auto;
  column-gap: 15px;
  row-gap: 15px;
  justify-content: center;
  margin: 1.5em;
}
main .gallery img {
  width: 70%;
  padding-left: 2em;
}
/* ===== LIGHTBOX STYLING ===== */

.lightbox {
  display: none; 
  position: fixed;
  z-index: 1000;
  padding-top: 5vh;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
}

.lightbox-content {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain; /* zorgt dat de hele foto zichtbaar blijft */
}

/* Sluitknop */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}

/* Pijlen links/rechts */
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.lightbox .prev { left: 10%; }
.lightbox .next { right: 10%; }

.lightbox .prev:hover,
.lightbox .next:hover {
  color: #d1c6a3;
}

/* ===== EIND MAIN CONTENT ===== */

/* ========================================
   CARDS / ARTIKELS
   ======================================== */
.card {
  display: grid;
  grid-template-columns: auto auto auto;

  margin: 2rem 2rem;
}
.card-behandeling {
  display: flex;
  flex-direction: column;
  margin: 2rem 2rem;
  padding: 1rem 2rem 2rem 2rem;
  background-color: #b8a48b;
  border: 3px solid #3a5144;
}
.card-behandeling h3 {
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
}
.card-behandeling p:nth-child(2) {
  font-size: 1.6rem;
  text-align: center;
}
.card-behandeling p:nth-child(3) {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.card-behandeling li {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 1em;

}
.card-behandeling ul {
  list-style-type: circle;
  margin-bottom: 1em;
}
.extra {
 
  border: 3px solid #e8c4a1;
}

.card-text {
  flex: 1 1 auto;
  font-weight: 200;  
  font-size: 0.6rem;
}

.card-text h2 {
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
}

.card-text a {
  text-decoration: none;
}

.card img {
  border-radius: 12px;
}

.card .polaroid {
  margin: 0 auto 2em auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card .content address {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1em;
}

.producten .natulique {
  max-width: 90%;
  margin: 1.2em auto;
}

article {
  display: grid;
  grid-template-columns: auto auto auto;
  margin-top: 8em;
}

iframe {
  height: 25em;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background-color: #2c2c2c;
  color: #eee;
  padding: 2rem 1rem;
  display: flex;
  gap: 2rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo a {
  size: 5em;
}

.footer-logo a img {
  max-width: 8em;
  position: absolute;
  margin: 1em 0 0 2em;
}

footer p {
  display: none;
}

.footer-nav li a {
  margin: 0 auto;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav {
  margin-left: 12em;
  font-size: 1.4rem;
}

.footer-contact li img {
  margin-left: 10em;
}

.footer-contact a {
  font-size: 1.4rem;
  
}

.footer-column a:hover {
  color: #d1c6a3;
}

.footer-socials {
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
}

.footer-socials ul {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: space-evenly;
}
}
