:root {
  --bg-image: url('bg2.jpg');
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.8);
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --overlay: rgba(0, 0, 0, 0.45);
}

html,
body {
  height: 100%;
  font-family: 'merriweather', serif;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: #0b0d0f;
}


.main-logo {
  height: clamp(80px, 10vw, 120px);
  width: auto;
  margin: 0 auto 20px auto;
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: linear-gradient(var(--overlay), var(--overlay)), var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  width: 90%;
  max-width: 780px;
  padding: 24px;
  box-sizing: border-box;
  margin-top: 120px;
}

h1 {
  margin: 0 0 12px 0;
  font-size: clamp(30px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: 1px;
  color: #f9faf3;
}

.subtitle {
  margin: 0 auto 28px auto;
  max-width: 900px;
  font-size: clamp(14px, 1.7vw, 20px);
  color: white;
  line-height: 1.7;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(198, 204, 214, 0.35);
  background-color: #a31e1e;
}

.cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.4);
}

.socials {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.socials a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-weight: 500;
}

.socials a:hover {
  color: #ffffff;
  border-color: #ffffff;
}



.footer-note {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;

  text-align: center;
  font-size: 1.2rem;
  color: rgb(255, 255, 255);
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);

}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }

  .socials a {
    transition: none;
  }
}

.brand-name {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .brand-name {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
}