:root {
  --bg: #000000;
  --surface: #111111;
  --surface-2: #171717;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --accent: #eb2e28;
  --accent-2: #e3106f;
  --accent-3: #f06522;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem; /* Makes text bigger too */
  text-decoration: none;
}

.brand-logo {
  height: 60px; /* Larger logo */
  width: auto;
}
.nav {
  display: flex;
  gap: 1.5rem;
  color: var(--text);
  font-size: 0.92rem;
}

.hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, rgba(235, 46, 40, 0.18), rgba(227, 16, 111, 0.12), rgba(240, 101, 34, 0.14)), var(--bg);
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  max-width: 700px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.4rem;
}

.lead {
  max-width: 600px;
  margin-top: 1.2rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.button:hover {
  opacity: 0.9;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  color: #ffffff;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-visual img {
  border-radius: 20px;
  min-height: 420px;
  object-fit: cover;
  box-shadow: 0 18px 35px var(--shadow);
}

.section {
  padding: 5rem 0;
}

.alt-section {
  background: var(--surface-2);
  color: #000000;
}

.alt-section .section-label,
.alt-section .card h3,
.alt-section .card p {
  color: #000000;
}

.alt-section .card p {
  opacity: 0.8;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem 3rem;
}

.split p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: rgba(0, 0, 0, 0.5); /* Dark semi-transparent background */
  backdrop-filter: blur(10px); /* Adds glassmorphism effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
}

.card * {
  color: #ffffff !important;
}

.card p {
  opacity: 0.9;
}

.card img {
  height: 230px;
  object-fit: cover;
}

.card h3,
.card p {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.card h3 {
  margin-top: 1.2rem;
}

.contact {
  padding-bottom: 6rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.social-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.center {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0f0f0f;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .hero-wrap,
  .split,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}
