/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* NEW: Better for layout calculations */
}

html {
  width: 100%;
  height: 100%;
}

@media (min-width: 300px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 400px) {
  html {
    font-size: 13px;
  }
}

@media (min-width: 576px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 17px;
  }
}

@media (min-width: 1400px) {
  html {
    font-size: 18px;
  }
}

@media (min-width: 2100px) {
  html {
    font-size: 19px;
  }
}

body, html {
  width: 100vw;
  margin: 0 0;
  padding: 0 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  flex: 1;
  overflow-y: auto;
}



.cormorant-garamond-700 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.playfair-display-italic {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
}


footer {
  z-index: 11;
  position: fixed;
  bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
}

footer p {
  color: rgb(255, 255, 255, 0.5);
  font-size: 7px;
  font-weight: 500;
  padding: 5px;
}

footer a:link,
footer a:visited,
footer a:hover,
footer a:active {
  text-decoration: none;
}

footer a {
  color: #CBAFAF; /* or whichever you choose */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #EAD9D9; /* a lighter version for hover */
}


@media (orientation: portrait) {

}

@media (orientation: landscape) {


}

/* common tablet landscape */

@media (min-width: 768px) {
  footer p {
    font-size: 8px;
  }
}

@media (min-width: 1024px) {
  footer p {
    font-size: 0.8rem;
  }
}

