* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Archivo', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.2rem 8%;
  z-index: 200;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 120px;
}

.social {
  display: flex;
  gap: 15px;
}

.social a {
  color: #fff;
  transition: color 0.3s;
}

.social a:hover {
  color: #dd0707;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Video Background */
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Overlay for contrast */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Text */
.text {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.text p,
.text .desc {
  font-size: 2.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 690px;
  letter-spacing: 0.6px;
}


.text h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.text h1 {
  font-size: 4rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.text h1 span {
  color: #dd0707;
  font-weight: bold;
}

.text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.text .btn {
  padding: 10px 30px;
  background-color: #dd0707;
  color: #fff;
  border-radius: 30px;
  border: 2px solid #dd0707;
  text-transform:capitalize;
  font-weight: normal; /* remove bold */
  text-decoration: none; /* remove underline */
  transition: 0.3s;
}

.text .btn:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}



/* Responsive */
@media (max-width: 480px) {
  .text h1 {
    font-size: 1.5rem;
  }

   .text p,
  .text .desc {
    font-size: 1.2rem; /* even smaller for very small screens */
    line-height: 1.3;
  }
}
