body {
  margin: 0;
  font-family: 'Cinzel', serif;
  background-color: #0f0f0f;
  color: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1a1a1a;
  border-bottom: 2px solid gold;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

header.navbar img {
  height: 50px;
}

header.navbar nav {
  display: flex;
  gap: 1rem;
}

header.navbar nav a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

header.navbar nav a:hover,
header.navbar nav a.active {
  color: white;
  text-shadow: 0 0 5px gold;
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: gold;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  header.navbar nav {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    width: 100%;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
  }

  header.navbar nav.open {
    display: flex;
  }
}

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  z-index: 2;
  backdrop-filter: blur(3px);
  background-color: rgba(0,0,0,0.6);
  padding: 2rem;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: gold;
  margin-top: 1rem;
}

.hero-content .btn {
  background-color: gold;
  color: black;
  padding: 0.75rem 2rem;
  margin-top: 1rem;
  border: none;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.hero-content .btn:hover {
  background-color: #ffc107;
}

section.container {
  padding: 3rem 1rem;
}

.card.epic-card {
  background-color: #1e1e1e;
  border: 2px solid gold;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(50px);
  color: #fff;
}

.card.epic-card img {
  object-fit: cover;
  height: 200px;
}

.card.epic-card .card-body {
  padding: 1rem;
}

.card-title {
  color: gold;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #1a1a1a;
  color: #aaa;
}

footer a {
  color: gold;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.section-dark {
  background-color: #121212;
  padding: 3rem 1rem;
}

.section-dark h2 {
  color: gold;
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial {
  background-color: #1e1e1e;
  border-left: 4px solid gold;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: #eee;
  border-radius: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}
