/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

/* Navbar */
header {
  background: #000;
  padding: 15px 20px;
}

header h1 {
  color: #fff;
  font-size: 24px;
  margin: 0;
  display: inline-block;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: limegreen;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('Seezyn2.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h2 {
  font-size: 60px;
  color: limegreen;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 8px black;
}

/* Sections */
section {
  padding: 50px 20px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto; /* keeps sections centered */
}

section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

/* Links */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px; /* spacing under buttons */
}

.links a {
  display: inline-block;
  padding: 12px 20px;
  background: #000;
  border: 2px solid limegreen;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  transition: 0.3s ease;
}

.links a:hover {
  background: limegreen;
  color: #000;
}

/* Video Section */
.video-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* center horizontally */
  justify-content: center;
  gap: 20px;
}

.video-container iframe {
  max-width: 800px; /* constrain width */
  width: 100%;
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
  margin-top: 40px;
}
