@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

:root {
  --bg-primary: #ffffff;
  --text-dark: #0A192F; /* Navy */
  --accent-orange: #FF6B35;
  --bg-dark: #0A192F;
  
  --font-main: 'Roboto', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-dark);
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* Z-Pattern Header */
header {
  background-color: var(--bg-dark);
  color: white;
  padding: 1.5rem 0;
}

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

.logo {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}

.logo span { color: var(--accent-orange); }

/* Z-Pattern Sections */
.z-section {
  display: flex;
  min-height: 80vh;
}

.z-section.reverse { flex-direction: row-reverse; }

.z-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.z-content {
  flex: 1;
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.z-content h2 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.z-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #555;
  line-height: 1.8;
}

.btn-solid {
  display: inline-block;
  background: var(--accent-orange);
  color: white;
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  transition: background 0.3s ease;
}

.btn-solid:hover { background: #e55a2b; }
