﻿body {
  font-family: 'Arial', sans-serif;
  background: #f7f9fc;
  color: #333;
}

.navbar-custom {
  background-color: #2d6a4f;
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: #fff;
  transition: color 0.3s;
}

.navbar-custom .nav-link:hover {
  color: #FFD700;
}

.hero-section {
  background: linear-gradient(135deg, #d9f0e1, #f7f9fc);
  padding: 80px 20px 40px 20px;
  text-align: center;
}

.hero-section h1 {
  color: #2d6a4f;
  font-size: 3rem;
  font-weight: bold;
}

.hero-section p {
  color: #555;
  font-size: 1.25rem;
  margin-top: 20px;
}

.feature-card {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.feature-card h2 {
  color: #2d6a4f;
  font-weight: bold;
}

.feature-card p {
  color: #555;
}

.btn-primary-custom {
  background-color: #429972 !important;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  padding: 12px 24px;
  transition: background 0.3s;
}

.btn-primary-custom:hover {
  background-color: #1b4332 !important;
}

footer {
  background-color: #2d6a4f;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin-top: auto;
}

footer a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s;
}

footer a:hover {
  color: #FFD700;
}

.hero-ownership {
  font-size: 0.95rem;
  color: #1b4332;
  margin-top: 12px;
}

.footer-ownership {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  margin-bottom: 0;
}

/* =====================
   MODALS
   ===================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal.show {
  display: flex; /* only visible when "show" is toggled */
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 320px;
  max-width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

