/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #111;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #e60000;
}

header h1 {
  font-size: 3em;
  letter-spacing: 2px;
  color: #e60000;
  text-shadow: 0 0 10px #e60000;
}

/* Nav */
nav ul.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 15px;
}

nav ul.nav-menu li {
  position: relative;
  margin: 0 15px;
}

nav ul.nav-menu li a {
  text-decoration: none;
  color: #f0f0f0;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul.nav-menu li a:hover {
  color: #e60000;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  padding: 10px;
  border: 1px solid #e60000;
  z-index: 999;
}

.dropdown-menu li {
  margin: 5px 0;
}

.dropdown-menu li a {
  color: #f0f0f0;
}

.dropdown-menu li a:hover {
  color: #e60000;
}

/* Main Content */
main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
}

.intro h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #e60000;
}

.latest {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.video-preview,
.blog-preview {
  flex: 1 1 45%;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Dog Spot Section */
.dog-spot {
  margin-top: 60px;
  background-color: #111;
  padding: 30px;
  border-left: 4px solid #e60000;
}

.dog-spot h3 {
  color: #e60000;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #333;
  margin-top: 60px;
  font-size: 0.9em;
  color: #777;
}