html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #d4af37;
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
}

/* HEADER */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 30px 8%;

  border-bottom: 1px solid rgba(212, 175, 55, 0.3);

  position: sticky;
  top: 0;

  background: #000;

  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: 100;
  font-family: "Alumni", sans-serif;
}

.service {
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* HERO SECTION */

.hero {
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 80px;

  padding: 80px 8%;

  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
    url("images/luxury4x4...webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}

.hero-images img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 12px;
  border: 2px solid #d4af37
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2)
}

.hero-content {
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 100;
  line-height: 1.2;

  margin-bottom: 20px;

  font-family: "Alumni", sans-serif;
}

.hero-content p {
  color: #e0c970;
  margin-bottom: 20px;
}

/* BUTTON */

.btn {
  display: inline-block;

  margin-top: 20px;

  background: #d4af37;
  color: #000;

  padding: 15px 35px;

  border-radius: 50px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ABOUT */

.about {
  padding: 100px 8%;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 40px;
  font-family: "Alumni", sans-serif;
}

.about p {
  max-width: 900px;

  margin: auto;

  color: #e0c970;
}

/* SERVICES */

.services {
  padding: 100px 8%;

  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 50px;
  font-family: "Alumni", sans-serif;
}

.service-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}

.card {
  border: 1px solid rgba(212, 175, 55, 0.3);

  padding: 30px;

  border-radius: 15px;

  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);

  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.card h3 {
  margin-bottom: 15px;
}

/* CONTACT */

.contact {
  padding: 100px 8%;

  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 40px;
  font-family: "Alumni", sans-serif;
}

.contact form {
  max-width: 700px;

  margin: auto;
}

.contact input,
.contact textarea {
  width: 100%;

  background: #111;

  color: white;

  border: 1px solid rgba(212, 175, 55, 0.3);

  padding: 15px;

  margin-bottom: 20px;

  border-radius: 10px;
}

.contact button {
  background: #d4af37;

  color: black;

  border: none;

  padding: 15px 40px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s ease;
}

.contact button:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* SOCIALS */

.socials {
  margin-top: 30px;
}

.socials a {
  color: #d4af37;

  font-size: 2.5rem;

  transition: 0.3s ease;
}

.socials a:hover {
  color: white;
}

/* FOOTER */

footer {
  text-align: center;

  padding: 40px;

  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

footer h3 {
  margin-bottom: 10px;
}

footer p {
  color: #e0c970;
}

/* MOBILE */

@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image img {
    width: 280px;
  }
}

/* SUCCESS-MESSAGE */

.success-message {
    margin-top: 20px;
    text-align: center;
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
}
