* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}
body {
  font-family: poppins;
  font-size: 16px;
}

/* nav */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}
body {
  font-family: poppins;
  font-size: 16px;
}
nav {
  height: 100px;
  width: 100%;
  /* background: #34495e; */
  background: white;
  /* z-index: 999; */
}
nav ul {
  float: right;
  margin-right: 40px;
}
nav li {
  display: inline-block;
  margin: 0 8px;
  line-height: 80px;
}
.logo {
  padding-top: 10px;
}
nav a {
  color: #555;
  /* font-size: 18px; */
  text-transform: uppercase;
  border: 1px solid transparent;
  padding: 7px 10px;
  border-radius: 3px;
}
a.active,
a:hover {
  border: 1px solid white;
  transition: 0.5s;
  background: white;
}
nav #icon {
  color: #333;
  font-size: 30px;
  line-height: 80px;
  float: right;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
@media (max-width: 1048px) {
  /* .logo {
    padding-left: 60px;
  } */
  nav ul {
    margin-right: 20px;
  }
  nav a {
    font-size: 17px;
  }
}
@media (max-width: 909px) {
  nav #icon {
    display: block;
  }
  nav ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2f3640;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
  }
  nav li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav a {
    font-size: 20px;
  }
  a.active,
  a:hover {
    border: none;
    color: #3498db;
  }
  nav ul.show {
    left: 0;
  }
}

@media (max-width: 768px) {
  nav #icon {
    display: block;
  }
  nav ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #f5f5f5;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
  }
  nav li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav a {
    font-size: 20px;
  }
  a.active,
  a:hover {
    border: none;
    color: #3498db;
  }
  nav ul.show {
    left: 0;
    z-index: 999;
  }
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
  padding: 50px 50px;
}

@media (max-width: 1000px) {
  section {
    padding: 50px 50px;
  }
  p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 50px;
  }
}
section p {
  max-width: 800px;

  margin-bottom: 20px;
  /* padding: 0 20px; */
  line-height: 1.5;
}

/* hero banner for newsletter */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
/* .hero video {
  width: 100%;
  height: 100%;
  object-fit: cover cover;
  object-position: center;
  display: block;
} */
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: white;
  /* background: rgba(0, 0, 0, 0.5);s */
  padding: 2rem;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 800px;
}
@media (max-width: 768px) {
  .hero {
    height: 50vh; /* slightly taller for small devices */
  }

  .hero video {
    object-fit: cover;
    /* height: 100%; */
    width: 100%;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* @media (max-width: 768px) {
  .hero {
    height: 60vh;
    width: 100%;
  }

  .hero-content {
    padding: 1rem;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
} */
/* @media screen and (max-width: 767px) {
  .hero img {
    width: 100%;
    object-fit: cover;
    z-index: -1;
    background-position: center center;
  }
} */
.details {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.details h2 {
  color: #5a0b7c;
  text-align: center;
  margin-bottom: 1rem;
}

.details p {
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.register-btn {
  display: block;
  width: fit-content;
  margin: 2rem auto;
  padding: 0.8rem 2rem;
  background-color: #5a0b7c;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}

.register-btn:hover {
  background-color: #42095f;
}

/* full video */
.full-video {
  max-width: 90%;
  margin: 2rem auto;
  padding: 1rem;
  box-sizing: border-box;
}

.full-video h3 {
  text-align: center;
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.audio-video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .full-video h3 {
    font-size: 1.2rem;
  }

  .audio-video {
    max-width: 100%;
    height: auto;
  }
}

/* @media (max-width: 768px) {
  .full-video h3 {
    font-size: 1.3rem;
  }

  .audio-video {
    max-height: 250px;
    width: 100%;
  }
} */
/* footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  background-color: #000;
  padding: 60px 0;
  line-height: 2rem;
}
footer p {
  color: lightgray;
  font-size: 14px;
}
.social {
  font-size: 2rem;
}

@media (max-width: 700px) {
  footer p {
    font-size: 12px;
  }
}

img {
  vertical-align: middle;
}

footer a {
  text-decoration: none;
  color: #fff;
  margin: 10px;
}
footer li i {
  color: #f5f5f5;
}
