html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body { 
  font-family: 'Times New Roman', Times, serif;
  background-color: #2C3E50;
  color: #FAFAFA;
  margin: 0px;
}

main {
  align-items: center;
  margin: 0 auto; 
  width: 75%;
  
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  box-sizing: border-box;
  margin-bottom: 20px;
 
}

header {
  display: flex;
  border-bottom: 2px solid #fafafa;
  padding: 10px;
  margin: 0px;
}

h1 {
  font-size: large;  
  margin: 0;
}

#propietaria {
  padding: 10px 15px;
  border: 2px solid #FAFAFA;
  font-weight: bold;
}

#propietaria a{
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

#actividad {
  margin-left: auto;
  font-weight: initial;
}

#navbar {
  display: flex;
  justify-content: center;
}

#navbar a, 
#index_main a, 
.servicios a{
  color: #FAFAFA;
  border-bottom: 1px solid #FAFAFA;
  display: inline-block;
  margin: 15px;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color 1.3s;
}

#navbar a:hover, 
#index_main a:hover {
  background-color: #FAFAFA;
  color: #2C3E50;
  font-weight: bold;
}

h2 {
  text-align: center;
}

#index_main a {
  border-bottom: none;
  margin: 0px;
}

figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

img { 
  max-width: 250px;
  border: 2px solid #FAFAFA;
  margin: 20px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-weight: bold;
  order: -1;
 
}

.ubicacion {
  text-align: left;
  margin-top: 10px;
  order: -1;
}

iframe {
  width: 600px;
  height: 250px;
  border: 2px solid #FAFAFA;
}

hr {
  border: none;
  height: 2px;
  margin: 40px 0;
  background-color: #FAFAFA;
}

footer{
  font-size: small;
  text-align: center;
  border-top: 1px solid #FAFAFA;
  margin-top: 30px auto;
}

.email, 
.telefono {
  text-decoration: none;
  color: inherit;
}

/* Estilo exclusivo para el formulario #contactForm */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  background-color: #34495E; /* Fondo del formulario */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #FAFAFA;
  border-radius: 6px;
  background-color: #2C3E50;
  color: #FAFAFA;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1rem;
  box-sizing: border-box;
  transition: background-color 0.3s, border 0.3s;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border: 2px solid #1ABC9C;
  background-color: #3B5360;
}

#contactForm button[type="submit"] {
  width: 180px;
  padding: 12px;
  margin: 0 auto;
  background-color: #1ABC9C;
  color: #FAFAFA;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#contactForm button[type="submit"]:hover {
  background-color: #16A085;
}
