

/*


Fonts
.special-gothic-expanded-one-regular {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url('images/bg.jpg') no-repeat center center/cover;
  font-family: 'Inter', sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  width: 100%;
  max-width: 1100px;
  background: #0c0604;
  border-radius: 20px;
  padding: 40px;
  color: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
}

.logo {
  font-size: 25px;
 font-family: "Special Gothic Expanded One", sans-serif;
}

nav a {
  color: #eee;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  
}

nav a:hover {
  color: #cf9a35;
}

.buttons .login {
  margin-right: 15px;
  color: #ddd;
  text-decoration: none;
}

.signup {
  background: #cf9a35;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.text {
  max-width: 500px;
}

.small {
  font-size: 12px;
  color: #bbb;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: "Special Gothic Expanded One", sans-serif;
}

.desc {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
}

.cta {
  display: flex;
  gap: 15px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
}

.primary {
  background: #cf9a35;
  color: white;
}

.secondary {
  border: 1px solid #ccc;
  color: white;
}

.image img {
  max-width: 280px;
  border-radius: 10px;
}

.footer {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #777;
  font-family: "Montserrat", sans-serif;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons a:hover .fa-facebook {
  color: #1877f2;
}
.social-icons a:hover .fa-twitter {
  color: #1da1f2;
}
.social-icons a:hover .fa-instagram {
  color: #e4405f;
}
.social-icons a:hover .fa-linkedin {
  color: #0077b5;
}
