﻿/* Reset bÃ¡sico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  background-color: #fdf8f3;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #e6d4c5;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #c5a880;
}

.logo img {
  height: 60px;
  vertical-align: middle;
}

.logo h1 {
  display: inline-block;
  margin-left: 15px;
  font-size: 2em;
  color: #5c4433;
}

nav ul {
  list-style: none;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #5c4433;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #d4b69b;
}

.imagen-principal img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.bienvenida {
  padding: 40px 20px;
  text-align: center;
}

footer {
  background-color: #e6d4c5;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  color: #5c4433;
  border-top: 2px solid #c5a880;
}

@media (max-width: 600px) {
  .logo h1 {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }
}/* Estilos específicos para la página "Sobre el Club" */

body {
  background-color: #FBF0E6;
}

.auto-style1 {
  text-align: center;
}

.auto-style5 {
  color: #5C4433;
}

.auto-style6 {
  color: #5C4433;
  font-size: large;
}

.auto-style7 {
  text-align: center;
  color: #5C4433;
}


