:root {
  --primary: #985f3e;
  --secondary: #ee028c;
  --text: #ffffff;
  --bg: #784e36;
  --button: #f4c573;
  --dark: #181818;
}

body {
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
  background-color: #784e36;
}

.times-roman {
  font-family: "Times New Roman", Times, serif;
}

/* Cinzel Regular */
@font-face {
  font-family: "Cinzel";
  src: url("../css/fonts/Cinzel-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Cinzel Medium */
@font-face {
  font-family: "Cinzel";
  src: url("../css/fonts/Cinzel-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Cinzel SemiBold */
@font-face {
  font-family: "Cinzel";
  src: url("../css/fonts/Cinzel-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Cinzel";
  src: url("/assets/fonts/Cinzel-Bold.woff2") format("woff2"),
    url("/assets/fonts/Cinzel-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom 0.4s ease;
}

.plus-icon {
  font-size: 2rem;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .overlay {
  bottom: 0;
}

.gallery-item:hover .plus-icon {
  opacity: 1;
  transform: scale(1);
}
