@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: #2b060b;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* BLACK FRAME */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 10px solid #000;
  pointer-events: none;
  z-index: 9999;
}

/* LIST RESET */
ul {
  list-style: none;
}

/* LAYOUT */
main {
  display: flex;
}

/* LEFT SIDE */
.main-left {
  position: fixed;
  top: 0;
  left: 0;

  width: 40%;
  max-width: 500px;
  height: 100vh;

  padding-top: 70px;
  padding-left: 50px;

  background: #000;
  background-image: url("../images/hoofdwerk-img.JPEG");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  border-right: 1px solid #f2c8d2;
}

.main-left h1,
.main-left h2 {
  position: fixed;
  bottom: 15px;
  left: 15px;

  background: #000;
  border: 1px solid #f2c8d2;

  padding: 10px 14px;

  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: #f2c8d2;

  z-index: 10000;
}

/* HEADINGS */
h1,
h2,
h3,
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* TEXT */
p,
.lead,
.menu-item,
.nav a {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* SPACING */
h2 {
  margin-top: 50px;
}

h3 {
  font-size: 24px;
}

/* LEAD */
.lead {
  font-size: 24px;
  margin: 20px 0;
}

/* RIGHT SIDE */
.main-right {
  margin-left: calc(40% + 50px);

  width: calc(60% - 50px);
  min-width: 0;

  padding-top: 120px;
  padding-left: 50px;
  padding-right: 90px;
  padding-bottom: 70px;

  background: #1f0407;
  color: #ffffff;

  border-left: 2px solid #f2c8d2;
  border-right: 2px solid #f2c8d2;
}

/* NAV */
.main-right .nav {
  position: fixed;
  top: 0;
  left: calc(40% + 50px);
  right: 0;

  height: 70px;

  background: #000;

  display: flex;
  align-items: center;

  padding-left: 50px;

  border: 1px solid #f2c8d2;

  z-index: 1000;
}

.main-right .nav li {
  padding-right: 30px;
}

.main-right .nav li a {
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

.main-right .nav li a:hover,
.main-right .nav li a:active {
  color: #f2c8d2;
}

/* SECTION OFFSET FIX (IMPORTANT FOR NAV JUMP) */
.section {
  scroll-margin-top: 90px;
}

/* SECTION TITLE */
.section-title {
  margin-bottom: 20px;
}

/* CONTENT */
.menu-item {
  margin-bottom: 20px;
}

.menu-item p {
  margin: 0;
}

.menu-item .title {
  font-weight: 500;
  margin-bottom: 5px;
  font-family: 'Cormorant Garamond', serif;
}

.menu-item a {
  color: #f2c8d2;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
}

.menu-item a:hover {
  color: #ffffff;
}

/* GALLERY */
.gallery-items img {
  width: 100%;
  opacity: 0.7;
  border: 1px solid #f2c8d2;
  margin-bottom: 15px;
  transition: 0.3s;
  cursor: pointer;
}

.gallery-items img:hover {
  border-color: #ffffff;
  opacity: 1;
}

/* ========================= */
/* LIGHTBOX (FULLSCREEN VIEW) */
/* ========================= */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: rgba(0, 0, 0, 0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;

  z-index: 10000;
}

/* ACTIVE STATE */
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

/* IMAGE */
.lightbox-img {
  max-height: 90vh;
  max-width: 90vw;

  border: 5px solid #f2c8d2;
  box-shadow: 0 0 25px rgba(242, 200, 210, 0.25);
}

/* CLOSE BUTTON */
.lightbox-close {
  position: fixed;
  top: 25px;
  right: 35px;

  font-size: 40px;
  color: #f2c8d2;
  cursor: pointer;

  font-family: 'Lato', sans-serif;
  z-index: 10001;
}

.lightbox-close:hover {
  color: #ffffff;
}
.contact-block {
  margin-top: 20px;
  max-width: 600px;
}

.contact-text {
  margin-bottom: 15px;
  opacity: 0.8;
}

/* email + button row */
.email-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* email style */
.contact-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #f2c8d2;
  text-decoration: none;
  letter-spacing: 0.5px;

  border-bottom: 1px solid rgba(242, 200, 210, 0.4);
  padding-bottom: 4px;
}

/* copy button */
.copy-btn {
  background: transparent;
  border: 1px solid #f2c8d2;
  color: #f2c8d2;

  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: uppercase;

  padding: 6px 10px;
  cursor: pointer;

  transition: 0.3s;
}

.copy-btn:hover {
  background: #f2c8d2;
  color: #1f0407;
}

/* confirmation message */
.copy-msg {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.7;
}
/* ========================= */
/* ARTWORK TITLES */
/* ========================= */

.artwork {
  margin-bottom: 25px;
}

.art-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.5px;

  color: #f2c8d2;

  margin-bottom: 8px;

  display: block;
}