* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #eaeaea;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAV */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 1000;
}

nav .container {
  display: flex;
  justify-content: space-between;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* HERO */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero h1 {
  font-size: 42px;
  max-width: 700px;
}

/* SECTION IMAGE BLOCK */
.section-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.section-text p {
  margin-bottom: 20px;
}

/* FULL TEXT BLOCK */
.full-text {
  padding: 100px 0;
}

.full-text h2 {
  margin-bottom: 30px;
}

.full-text p {
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 0;
  font-size: 12px;
  color: #888;
}

/* MOBILE */
@media(max-width: 900px) {
  .section-image {
    grid-template-columns: 1fr;
  }

  .section-text {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }
}