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

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "HeadingNow";
  src: url("../fonts/HeadingNow-46Bold.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   VARIABLES (TentriQ)
========================= */
:root {
  --container-width: 1120px;

  --primary: #1e1f41;
  --secondary: #e0ebcc;
  --accent: #4170ff;
  --cta: #ec008c;

  --light-bg: #11122a;
  --border: #2a2c5a;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =========================
   GLOBAL
========================= */
body {
  font-family: Arial, sans-serif;
  color: var(--secondary);
  background: var(--primary);
  line-height: 1.7;
}

.container {
  width: min(92%, var(--container-width));
  margin: auto;
}

section {
  padding: 100px 0;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  font-weight: 800;
  font-family: "HeadingNow", serif;
}

p {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 24px;
  max-width: 900px;
}

ul {
  margin: 30px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 16px;
  color: var(--secondary);
}

.top-header {
  height: 75px;
  background: white;
  border-bottom: 1px solid var(--border);

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

  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  max-height: 74px;
  width: auto;
}
/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 31, 65, 0.3),
    rgba(30, 31, 65, 0.85)
  );
}

.hero-content {
  position: relative;
  z-index: 2;

  height: 100%;
  padding: 0 30px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  text-align: center;
}

.hero-description {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-family: Georgia, serif;
  font-style: italic;
  margin-bottom: 40px;
}

/* =========================
   BUTTON
========================= */
.btn {
  display: inline-flex;
  padding: 18px 34px;

  background: var(--cta);
  color: white;

  text-decoration: none;
  font-size: 1.2rem;

  border-radius: 999px;
  transition: 0.3s ease;

  font-family: "HeadingNow", serif;
  font-weight: bold;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(236, 0, 140, 0.4);
}

/* =========================
   CONTENT
========================= */
.content {
  background: var(--primary);
}

.content .container {
  max-width: 900px;
}

.content h2:not(:first-child) {
  margin-top: 100px;
}

.content ul {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 36px;
  list-style: none;
}

.content li {
  position: relative;
  padding-left: 28px;
}

.content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* =========================
   CONTACT
========================= */
.contact-section {
  background: var(--light-bg);
}

.contact-section .container {
  max-width: 700px;
}

.contact-section h2 {
  text-align: center;
}

form {
  background: #11122a;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--primary);
  color: white;

  border-radius: 14px;
  padding: 16px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button {
  background: var(--cta);
  color: white;

  padding: 16px;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;

  transition: 0.3s ease;
}

button:hover {
  transform: scale(1.05);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: var(--primary);
  text-align: center;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.social-links a {
  display: flex;
  background: var(--primary);
  padding: 12px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-links a:hover {
  transform: scale(1.15);
}

/* Brand hover */
.social-links a.linkedin:hover {
  background: #0077b5;
}

.social-links a.instagram:hover {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.social-links a.website:hover {
  background: var(--accent);
}

/* =========================
   UTIL
========================= */
.hidden {
  display: none;
}

#successMessage {
  margin-top: 20px;
  text-align: center;
  color: #4ade80;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .hero {
    min-height: 600px;
  }

  .hero-description {
    font-size: 1.2rem;
  }

  .content h2:not(:first-child) {
    margin-top: 70px;
  }

  form {
    padding: 24px;
  }
}
