/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 10;
}

#header-img {
  width: 100px;
  height: auto;
}

#nav-bar {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ff6600;
}

/* Hero Section */
#hero {
  background: linear-gradient(to right, #111, #333);
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

#hero h1 {
  font-size: 3rem;
}

#hero button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff6600;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.3s;
}

#hero button:hover {
  background: #e65c00;
}

/* Sections */
section {
  padding: 100px 20px;
  text-align: center;
  background: white;
  margin-top: 60px;
}

#features ul {
  list-style: none;
  margin-top: 20px;
}

#features li {
  font-size: 1.2rem;
  margin: 10px 0;
}

/* Video */
#video {
  width: 80%;
  max-width: 700px;
  height: 400px;
  margin-top: 20px;
}

/* Form */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button#submit {
  background: #ff6600;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

button#submit:hover {
  background: #e65c00;
}

/* Footer */
footer {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 600px) {
  #header {
    flex-direction: column;
  }

  #video {
  width: 80%;
  max-width: 700px;
  height: 400px; /* or adjust ratio: 16:9 roughly */
  margin-top: 20px;
  border-radius: 10px;
}

/* For smaller screens */
@media (max-width: 600px) {
  #video {
    width: 100%;
    height: auto; /* let the browser adjust height so it keeps the ratio */
  }
}


  #hero h1 {
    font-size: 2rem;
  }
}

