:root {
  --primary: #92400e;
  --primary-dark: #78350f;
  --accent: #d97706;
  --bg-light: #fef3c7;
  --bg-white: #ffffff;
  --text-dark: #292524;
  --text-gray: #78716c;
  --border: #d6d3d1;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", sans-serif;
  background: #fafaf9;
  color: var(--text-dark);
  line-height: 1.6;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.75rem;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;

  background-image: url(../img/1.png);

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2rem;
  max-width: 700px;
}

.btn-river {
  background: var(--primary);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.2s ease;
}

.btn-river:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(146, 64, 14, 0.2);
  color: white;
}

.btn-river-outline {
  background: transparent;
  color: var(--primary);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  transition: all 0.2s ease;
}

.btn-river-outline:hover {
  background: var(--primary);
  color: white;
}

.rustic-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.rustic-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.wood-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 60px 0;
}

.river-steps {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-content p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.accordion-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.accordion-button {
  background: white !important;
  color: var(--text-dark) !important;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
}

.accordion-button:hover {
  background: #fafaf9 !important;
}

.accordion-button:not(.collapsed) {
  background: var(--bg-light) !important;
  color: var(--primary) !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2392400e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  background: white;
  color: var(--text-gray);
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.footer {
  background: var(--text-dark);
  color: #d6d3d1;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.footer .label-nav {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer .nav-pages a {
  color: #a8a29e;
  text-decoration: none;
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.footer .nav-pages a:hover {
  color: white;
}

.footer .logo-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer .age18 {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.footer .logo-trust img {
  height: 36px;
  opacity: 0.7;
}

.footer .logo-trust img:hover {
  opacity: 1;
}

.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background: var(--primary);
  color: white;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 1.5rem 2rem;
}

.modal-title {
  font-weight: 700;
}

.modal-body {
  padding: 2rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(146, 64, 14, 0.1);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .rustic-card {
    padding: 1.5rem;
  }
}
