
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  scroll-behavior: smooth;
}

header {
  background-color: #0a0a0a;
  border-bottom: 2px solid #bfa046;
  padding: 20px;
  text-align: center;
}

header h1 {
  color: #bfa046;
  margin: 0;
  font-size: 2.5em;
}

.contact-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border: 2px solid #bfa046;
  color: #bfa046;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-button:hover {
  text-decoration: underline;
}

.intro {
  text-align: center;
  padding: 50px 20px;
  animation: fadeIn 1s ease;
}

.media {
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #1a1a1a;
  animation: fadeSlide 1.2s ease;
  margin-bottom: 10px;
  border-radius: 12px;
}

.media img, .media video {
  max-width: 100%;
  max-height: 300px;
  border: 2px solid #c5ac62;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.media img:hover, .media video:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.text-block {
  max-width: 600px;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
