@font-face {
  font-family: 'Dramaturg';
  src: url('../fonts/Dramaturg.otf') format('opentype');
}

@font-face {
  font-family: 'DramaturgSC';
  src: url('../fonts/DramaturgSC.otf') format('opentype');
}

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

body {
  font-family: 'DramaturgSC', sans-serif;
}

.navbar {
  display: flex;
  align-items: center;
  background-color: #4e160f;
  min-height: 80px;
  max-height: max-content;
  width: 100%;
  font-family: 'DramaturgSC', sans-serif;
}

.navbar-menu {
  display: flex;
  justify-content: center;
  gap: 50px;
  width: 100%;
  list-style: none;
}

.navbar-menu-item a {
  color: #fff;
  font-size: 4rem;
  letter-spacing: 3px;
  text-decoration: none;
}

.navbar-menu-item a:hover {
  color: #E5C280;
  text-decoration: underline;
}

.logo-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.logo {
  position: fixed;
  width: 250px;
  height: 200px;  
  bottom: 0;
  right: 0;
  z-index: 1000;
}

.logo img {
  width: 100%;
  height: 100%;
}

.home {
  width: 100%;
  min-height: 100vh;
  background-image: url('../img/bg_1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 500px;
  padding: 30px;
  color: #fff;
  background-color: #4e160fe8;
  border-radius: 15px;
}

.home-content h1 {
  font-size: 6em;
  letter-spacing: 8px;
  text-align: center;
  color: #E5C280;
}

.home-content p {
  font-size: 3rem;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 20px;
}

.home-content a {
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 5rem;
  color: #E5C280;
}

.home-content a:hover {
  text-decoration: underline;
}

footer {
  width: 100%;
  background-color: #4e160f;
  padding: 20px 0;
  color: #fff;
  text-align: center;
  min-height: 50px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.footer-content span {
  color: #E5C280;
  font-weight: bold;
}

.footer-content p,
.social-media a {
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-family: 'DramaturgSC', sans-serif;
}

.social-media a:hover {
  color: #E5C280;
  text-decoration: underline;
}

.footer-content a,
.social-media a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .navbar-menu {
    flex-direction: column;
    align-items: center;
  }
  
}