:root {
  --dark-bg: #1a1a1a;
  --brand-yellow: #ffcc00;
  --text-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-white);
  min-height: 100vh;
}

.main-wrapper {
  position: relative;
  padding: 20px 5%;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.5rem;
  width: 10%;
}

.logo img {
  width: 100%;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
}

.search-container {
  background: white;
  border-radius: 20px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
}

.search-container input {
  border: none;
  outline: none;
  padding: 5px;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* La forma de "Blob" para la imagen */
.blob-mask {
  width: 500px;
  height: 450px;
  background: #333;
  /* Valores de border-radius para crear la forma de gota irregular */
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  position: relative;
}

.blob-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Textos */
.main-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--brand-yellow);
  line-height: 1;
  margin-bottom: 20px;
}

.quote {
  font-style: italic;
  color: #ccc;
  margin-bottom: 30px;
  border-left: none;
  padding: 0;
}

.quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: white;
}

/* Botones */
.cta-group {
  display: flex;
  gap: 20px;
}

.btn-yellow {
  background: var(--brand-yellow);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--brand-yellow);
  color: var(--brand-yellow);
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
}

/* Elementos Decorativos */
.gear {
  position: absolute;
  font-size: 80px;
  color: var(--brand-yellow);
  opacity: 0.8;
}

.gear-top {
  top: -20px;
  left: 25%;
}
.gear-bottom {
  bottom: 10%;
  left: 40%;
}

.social-links {
  display: flex;
  gap: 15px;
  /* margin-top: 3px; */
}

.social-links a,
.arrow1 {
  color: var(--brand-yellow);
  font-size: 2rem;
}

.span1 {
  color: var(--brand-yellow);
  font-size: 1.2rem;
  font-weight: bold;
}

@media (max-width: 600px) {
  .logo {
    width: 30%;
  }
  .gear-top {
    top: -20px;
    left: 50%;
  }
  .navbar {
    margin-bottom: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blob-mask {
    width: 100%;
    height: 300px;
  }
}
