:root {
  --bg: #c3c3b3
  --surface: #879374;
  --accent: #4e5e74;
  --accent-soft: #8fa3ad;
  --text: #e6edf3;
  --highlight: #7a9e7e;
  --navbar_cl: #1e2a1f;
  --royal-oak-leaf: #879374; 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* NAV */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  background: var(--navbar_cl);
  backdrop-filter: blur(10px);
}

.navbar a {
  color: var(--accent-soft);
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: var(--highlight);
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 50px;
  background: linear-gradient(120deg, #c3c3b3, #d8d8ce);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--navbar_cl);
}

.hero p {
  color: var(--navbar_cl);
  margin-bottom: 20px;
}

.hero button {
  padding: 12px 24px;
  background: #c5774c;
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  opacity: 0.8;
}

/* SECTIONS */
.section {
  padding: 80px 50px;
  color: var(--navbar_cl); 
}

.section.dark {
  background: var(--navbar_cl);
  color: white;
}

h2 {
  margin-bottom: 40px;
}

/* GRID */
.grid {
  display: flex;
  gap: 20px;
}

.card {
  background: var(--surface);
  padding: 20px;
  flex: 1;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--highlight);
}

/* STEPS */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  padding: 20px;
  border-left: 3px solid var(--highlight);
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}

input, textarea {
  padding: 12px;
  border: none;
  background: var(--surface);
  color: var(--text);
}

button {
  background: var(--highlight);
  padding: 12px;
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 20px;
  color: white;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.4);
}

/* MOBILE */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
  }

  .about-image {
    order: -1;
  }

  .about-text {
    text-align: center;
  }
}

.about-image img {
  filter: grayscale(20%);
  transition: 0.4s;
}

.about-image img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}