/* 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;
}

/* === VIDEO SLIDER STYLES === */
.video-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.video-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.video-slide iframe {
  width: 100%;
  height: 450px;
  border-radius: 16px;
}

/* === BLUE SLIDER BUTTONS === */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #00aaff, #0055ff) !important;
  border: none;
  color: #fff !important;
  font-weight: bold;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  opacity: 0.9;
}

.slider-btn:hover {
  background: linear-gradient(135deg, #0090ff, #003fe0);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

/* Optional: fade buttons in on hover */
.video-slider:hover .slider-btn {
  opacity: 1;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
  margin-top: 40px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .video-slide iframe {
    height: 300px;
  }

  .slider-btn {
    padding: 10px 12px;
  }
}
