/* General */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-style: normal;
  background-color: #111;
  color: white;
}

.navbar-brand {
  margin-top: 60px; /* Compensa la altura del navbar fijo */
  font-weight: bold;
  font-size: 1.5rem;
  color: #000000;
  background-color: #206127;
  width: 80%;
  margin: 60px auto 0 auto;
  z-index: 10;
}

.navbar-nav .nav-link {
  font-weight: 800;
  font-size: 1rem;
  transition: color 0.3s ease;
  margin-left: 50px;
}

@media (max-width: 1260px) {
  .navbar-nav .nav-link {
    font-weight: 800;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .navbar-nav .nav-link {
    margin-left: 0;
  }
}

.navbar-nav .nav-link:hover {
  color: #64833A;
}

.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: #FFFFFF;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  height: 120vh;
  display: inline-table;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 0;
  top: -7rem;
  bottom: 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1); /* Capa oscura */
  z-index: -1;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding-top: 12rem;
}

.hero-button {
  background-color: #64833A;
  border: none;
  font-size: 1.2rem;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  color: white;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #48681b;
}

.w-30 {
  width: 30%;
}

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

  .w-30 {
    width: 70%;
  }
}

/* Información de Permiso */
.permiso-section {
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  padding: 60px 0;
  text-align: center;
  position: relative;
  top: -7rem;
}

.permiso-section h2 {
  font-weight: bold;
  color: #64833A;
  margin-bottom: 1rem;
}

.permiso-section p {
  color: #cccccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.permiso-section .btn-outline-light {
  border-color: #64833A;
  color: #64833A;
}

.permiso-section .btn-outline-light:hover {
  background-color: #64833A;
  color: #ffffff;
}

/* Eventos */
.eventos-section {
  background-color: #111;
  padding: 60px 0;
  text-align: center;
}

.eventos-section h2 {
  font-weight: bold;
  color: #64833A;
  margin-bottom: 1rem;
}

.eventos-section p {
    color: #cccccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.eventos-section .btn-outline-light {
  border-color: #64833A;
  color: #64833A;
}

.eventos-section .btn-outline-light:hover {
  background-color: #64833A;
  color: #ffffff;
}

/* Socios */
.socios-section {
  background-size: cover;
  background-position: center;
  background-color: #111;
  padding: 60px 0;
  text-align: center;
}

.socios-section h2 {
  font-weight: bold;
  color: #64833A;
  margin-bottom: 1rem;
}

.socios-section img {
  max-width: 100%;
}

.socios-section p {
  color: #cccccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Misión y Visión */
.mision-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.mision-section h3 {
  font-weight: bold;
  color: #64833A;
  margin-bottom: 1rem;
}

.mision-section p {
  color: #cccccc;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Contacto */
.contacto-section {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.contacto-section h2 {
  font-weight: bold;
  color: #64833A;
  margin-bottom: 1rem;
}

.contacto-section .form-control {
  border-radius: 0;
  border: 2px solid #64833A;
}

.contacto-section .btn-primary {
  background-color: #64833A;
  border: none;
}

.contacto-section .btn-primary:hover {
  background-color: #48681b;
}

.contacto-section p {
  color: #333333;
  font-size: 1rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: #64833A;
  color: #cccccc;
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin: 0;
}

.text-justify {
  text-align: justify;
}

.copyright {
    font-size: small;
}

.copyright a {
    color: #232323;
    text-decoration: none;
}

.registro-section .form-control {
  border-radius: 0;
  border: 2px solid #64833A;
}

.registro-section .btn-primary {
  background-color: #64833A;
  border: none;
}

.registro-section .btn-primary:hover {
  background-color: #64833A;
}

.background-dark span {
  background-color: #1a1a1a;
  color: #64833A;
  padding: 10px;
}

.btn-primary {
  background-color: #64833A;
  border: none;
}

.btn-primary:hover {
  background-color: #48681b;
}

.page-link {
  background-color: #64833A;
}

.page-link:hover {
  background-color: #48681b;
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #48681b;
    border-color: #48681b;
}

.records {
  min-height: 60vh;
}

a {
  color: #64833A;
  text-decoration: none;
}