/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff8f0;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #A0522D;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* Container for centering content */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Video wrapper centers the video */
.video-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

/* Responsive video container - maintains 16:9 aspect ratio */
.video-container {
  position: relative;
  width: 100%;
  max-width: 560px; /* max width of the video */
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.video-section {
  text-align: center;
  padding: 20px;
}

.main-content {
  padding: 30px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* Story Section */
#story {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1.1rem;
}

section {
  margin-bottom: 40px; /* Adjust as needed (e.g., 20px, 60px) */
}

/* Footer */
footer {
  background-color: #404040;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
