@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
  margin: 0;
  font-family: Helvetica, sans-serif;
  background-color: #f4f4f4;
  padding: 0;
}

a {
  color: #000;
}

/* header */

.header {
  background-color: #ffffff;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
  position: fixed;
  width: 100%;
  z-index: 3;
  padding: 10px;
}

header img {
  margin-top: 13px;
  width: 100px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  opacity: 0;
  animation: fadeInLogo 0.8s ease forwards;
}

.header img:hover {
  transform: scale(1.05);
}

@keyframes fadeInLogo {
  to {
    opacity: 1;
  }
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 16px 0;
  transition: color 0.3s ease;
}

.menu li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e4a42e;
  transition: width 0.3s ease;
}

.menu li a:hover {
  color: #e4a42e;
}

.menu li a:hover::after {
  width: 100%;
}


.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked~.menu {
  max-height: 240px;
}

.header .menu-btn:checked~.menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* main */

main {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  color: #000000;
}

main p {
  margin-bottom: 1px;
  padding: 0px 20px;
  line-height: 20px;
  letter-spacing: 1.5px;
}

.main-img img {
  display: inline-block;
  border-radius: 0px 0px 25px 25px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 65px;
  image-rendering: auto;
  image-rendering: crisp-edges;
}

main h1 {
  text-align: left;
  padding: 0px 20px;
  font-family: 'Bebas Neue';
  font-weight: 100;
}

main h2 {
  padding: 0px 20px;
  font-family: 'Bebas Neue';
  font-weight: 100
}

main a {
  font-size: 20px;
  font-family: sans-serif;
}

main {
  position: relative;
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #f4f4f4);
  animation: fadeInMain 1.2s ease-in-out;
}

@keyframes fadeInMain {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 1.5px;
  margin-top: 40px;
  color: #333;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Optional: Accent bar under main heading */
main h1::after {
  content: "";
  display: block;
  margin: 15px auto 0;
  width: 70px;
  height: 4px;
  background-color: #e4a42e;
  border-radius: 2px;
}

/* Optional: Add motion effect when scrolling */
@media (prefers-reduced-motion: no-preference) {
  main {
    scroll-margin-top: 100px;
  }
}

/* sec1 */

.sec1 {
  padding: 20px;
  background-color: #e4a42e;
  color: white;
  animation: fadeInSection 1s ease-in-out;
}

@keyframes fadeInSection {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sec1::after {
  content: "";
  display: block;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.sec1 h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: white;
  margin: 10px auto 0;
  border-radius: 2px;
}


.sec1 h2 {
  text-align: center;
  font-weight: 100;
  font-size: 25px;
  font-family: 'Bebas Neue';

}

.sec1 h1 {
  font-family: 'Bebas Neue';
  font-weight: 500;
  text-align: left;
  margin-bottom: 40px;
}

.sec1 p {
  line-height: 25px;
  letter-spacing: 1.5px;
}

.sec1 img {
  margin-top: 50px;
  width: 50%;
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

/* combo */

.combo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.combo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  animation: pulse 6s infinite linear;
  z-index: 0;
}

@keyframes pulse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* img */

.img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* list */

.list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-left: 4px solid white;
  padding-left: 20px;
}

.list p span {
  font-weight: bold;
  color: #fff;
}

/* videos */

.videos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Bebas Neue';
  font-weight: 100;
  font-size: 22px;
  margin: auto;
}

.videos h2 {
  margin-top: 75px;
  text-align: center;
}


.videos video {
  margin-top: 25px;
  width: 95%;
  height: 500px;
  max-width: 1000px;
}

.videos video:last-child {
  margin-bottom: 100px;
}

.videos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Bebas Neue';
  font-weight: 100;
  font-size: 22px;
  margin: auto;
  text-align: center;
}

.videos .set1,
.videos .set2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

.videos video {
  object-fit: cover;
  width: 70%;
  max-width: 600px;
  height: auto;
  margin-top: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.videos video:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.videos h2 {
  margin-top: 75px;
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 1px;
}

.videos video:last-child {
  margin-bottom: 100px;
}

/* conclusion */

.conclusion {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #f0f0f0;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.group1 h1 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #ffffff;
}

.group1 a button {
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.group1 a button:hover {
  background-color: #e4a42e;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.group2 p {
  font-size: 14px;
  color: #aaa;
  letter-spacing: 1px;
}


/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }

  .header li a {
    padding: 20px 30px;
  }

  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }

  .header .menu-icon {
    display: none;
  }
}

@media(min-width: 1000px) {
  header img {
    width: 200px;
    margin-top: 0px;
  }

  .main-img img {
    height: 800px;
    object-fit: cover;
    object-position: 65% 65%;
  }

  main h1 {
    font-size: 50px;
    padding-left: 50px;
  }

  main br {
    display: none;
  }

  .sec1 {
    padding-bottom: 200px;
  }

  .sec1 h1 {
    width: 310px;
    font-size: 50px;
    padding-left: 30px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    padding-top: 30px;
  }

  .sec1 h2 {
    font-size: 40px;
  }

  .list {
    display: flex;
    justify-items: center;
    align-items: center;
    gap: 10px;
  }

  .sec1 p {
    text-align: left;
    font-size: 25px;
    width: 600px;
  }

  .combo {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
  }

  main h1 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .conclusion {
    gap: 50px;
  }

  .videos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 300px;
  }

  .videos video {
    height: 600px;
  }

  .group1 {
    padding-top: 20px;
    padding-left: 20px;
    padding-left: 20px;
    gap: 20px;
  }

  .group2 {
    margin-top: -50px;
    font-size: 21px;
    margin-bottom: 20px;
  }

  @media (max-width: 768px) {
    main h1 {
      font-size: 32px;
      padding: 0 10px;
    }

    .main-img img {
      max-height: 300px;
      border-radius: 12px;
    }

    main {
      padding: 40px 10px;
    }

    main h1::after {
      width: 40px;
      height: 3px;
    }
  }

  /* header below */



}