@font-face {
  font-family: "jmk-script-regular";
  src: url("fonts/jmk-script-regular.ttf") format("truetype");
}

@font-face {
  font-family: "jmk-script-bold";
  src: url("fonts/jmk-script-bold.ttf") format("truetype");
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 20px;
  transition: background 0.5s ease;
  z-index: 1000;
  background: transparent;
}

header.scrolled {
  background: #e6e6e6;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav a {
  font-family: "jmk-script-regular", sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: 20px;
  color: #000000;
  transition: color 0.3s ease;
}

nav a.active {
  font-family: "jmk-script-bold", sans-serif;
  font-weight: bold;
}

body {
  margin: 0;
  height: 100vh;
  background: url("images/paper-texture-background.jpg") no-repeat center center fixed;
  background-size: cover;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
  max-width: 150 px;
  width: 10%;
  height: auto;
  cursor: pointer;
  font-size: 24px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

.landing {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.bars {
  display: flex;
  gap: 30px;
}

.bar {
  width: 10vw;
  height: 50vh;
  max-width: 200px;
  background: #e6e6e6;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: block;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.bar img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bar:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.bar:hover img {
  opacity: 1;
}
