:root {
  --brand-green: #1f5c3f;
  --brand-green-light: #2e8b57;
}

/* =========================
   GLOBAL
========================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  background-image: url("/assets/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  color: var(--brand-green-light);
  transition: 0.2s ease;
}

a:hover {
  color: var(--brand-green);
}

a:focus,
button:focus {
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
}

/* =========================
   HEADER
========================= */

.header {
  background: rgba(0, 0, 0, 0.65);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo {
  height: 50px;
}

.brand-name {
  font-family: 'Lobster', cursive;
  font-size: 34px;
  white-space: nowrap;
  color: var(--brand-green);
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* =========================
   MENU
========================= */

nav a {
  margin-left: 26px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--brand-green-light);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--brand-green);
  transition: 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* =========================
   LANG BUTTONS
========================= */

.lang button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: white;
  padding: 6px 10px;
  border-radius: 10px;
  transition: 0.3s ease;
  cursor: pointer;
}

.lang button:hover {
  background: var(--brand-green);
  color: white;
}

.lang button.active {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: white;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 40px 80px 120px;
  background: rgba(0, 0, 0, 0.45);
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 68px;
  line-height: 1.1;
  margin: 0;
  color: white;
}

.hero h1 span {
  color: var(--brand-green-light);
}

.hero p {
  font-size: 22px;
  margin: 20px 0 0 0;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================
   CONTENT
========================= */

.content {
  padding: 140px 80px 90px 80px;
  background: rgba(0, 0, 0, 0.55);
  min-height: 70vh;
}

h2,
h3 {
  color: var(--brand-green-light);
}

/* =========================
   TILES
========================= */

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.tile {
  border-left: 4px solid var(--brand-green);
  background: rgba(17, 24, 39, 0.92);
  padding: 24px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border-left: 4px solid var(--brand-green-light);
}

.tile h3 {
  margin: 0 0 10px 0;
}

.tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

/* =========================
   CONTACT
========================= */

.contact h2 {
  margin: 0 0 14px 0;
}

.contact a {
  color: var(--brand-green-light);
  text-decoration: none;
}

.contact a:hover {
  color: var(--brand-green);
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 120px 20px 60px 20px;
  }

  nav {
    display: none;
  }
}