body {
  font-family: 'Playfair Display', serif;
  background-color: #111;
  color: #fff;
  padding: 2rem;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
  margin-top: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

button {
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  background-color: gold;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e6c200;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background-color: rgb(0, 0, 0);
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 300px;
  font-size: 1.2em;
}

#modal-close-btn {
  margin-top: 15px;
  padding: 8px 16px;
  cursor: pointer;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  z-index: 1000;
}
.back-button:hover {
  background-color: #444;
}

@media (max-width: 768px) {
  .custom-cursor {
    display: none !important;
 }
}

@media (max-width: 768px) {
  #hamburger-menu {
  width: 100%;
  }
}

@media (max-width: 768px) {
  .language-dropdown {
    left: auto;
    right: 0;
   
  }
  
  .language-dropdown {
    min-width: 140px;
    width: auto;
  }
}