* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.branding {
  display: flex;
  align-items: center;
  gap: 10px;
  float: left;
}

.logo-img {
  height: 40px;
  width: auto;
}


header {
  background-color: #DA291C;
  color: white;
  padding: 20px 0;
}

.logo {
  float: left;
  font-size: 26px;
  font-weight: bold;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline;
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header::after {
  content: '';
  display: block;
  clear: both;
}

#hero {
  background-image: url('old\ trafford.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
}

.overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(218, 41, 28, 0.8), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  background-color: #FFD700; /* emas */
  color: #000;
  padding: 12px 25px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #DA291C;
  color: white;
}

#about {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

#about h2 {
  margin-bottom: 20px;
  font-size: 36px;
  color: #DA291C;
}

#features {
  background-color: #f2f2f2;
  padding: 60px 0;
  text-align: center;
}

#features h2 {
  margin-bottom: 40px;
  font-size: 36px;
  color: #DA291C;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.feature-box h3 {
  color: #DA291C;
  margin: 15px 0;
}

#contact {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

#contact h2 {
  margin-bottom: 30px;
  color: #DA291C;
  font-size: 36px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  resize: vertical;
}

.contact-form button {
  background-color: #DA291C;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #a93226;
}

footer {
  background-color: #DA291C;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

@media (max-width: 992px) {
  nav ul li {
    margin-left: 10px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .feature-box {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .branding {
    float: none;
    justify-content: center;
    margin-bottom: 15px;
  }

  nav {
    float: none;
    text-align: center;
    margin-top: 10px;
  }

  nav ul li {
    display: block;
    margin: 10px 0;
  }

  #hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  #about h2,
  #features h2,
  #contact h2 {
    font-size: 28px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }
}
