/* Cuerpo de la página */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #f9f6f1;
    color: #2b2b2b;
    line-height: 1.6;
}

/* Cabecera */
header {
    background: linear-gradient(to right, #5a2a27, #7d3e3e);
    color: #fff;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.cabecera {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    height: 110px;
    width: 90 px;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

h1 {
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
    margin-left: 1rem;
    flex: 1;
    color: #ffe6c7;
    text-shadow: 1px 1px 2px #000;
}

.login-form {
    display: flex;
    gap: 0.5rem;
}

.login-form input,
.login-form button {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Georgia', serif;
}

.login-form button {
    background-color: #e0b973;
    color: #2e2e2e;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-form button:hover {
    background-color: #c89f5d;
}

.alta-link {
    color: #ffe6c7;
    margin-left: 1rem;
    text-decoration: underline;
    font-size: 0.9rem;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 2rem;
    background: #3b1f1f;
    padding: 1rem 0;
    flex-wrap: wrap;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.4);
}

nav a {
    color: #ffe6c7;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Cinzel', serif;
}

nav a:hover {
    color: #f7c873;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Foto del club representativa */
.caballeros-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    filter: sepia(0.3) contrast(1.1) brightness(0.9) saturate(0.8) grayscale(0.2);
    border: 8px solid #7d3e3e;
    transition: transform 0.4s ease, filter 0.3s ease;
    border-image: linear-gradient(to right, #c89f5d, #7d3e3e, #c89f5d) 1;
    box-shadow: 0 0 20px rgba(125, 62, 62, 0.5);
}

.caballeros-img:hover {
    filter: contrast(100%) saturate(100%) hue-rotate(0deg);
    transform: scale(1.02);
}

/* Texto explicativo del club */
.bienvenida {
    padding: 2.5rem;
    background-color: #fffaf2;
    text-align: center;
    border-top: 4px solid #c89f5d;
    border-bottom: 4px solid #c89f5d;
}

.bienvenida h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #7d3e3e;
}

.bienvenida p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #3e3e3e;
}

/* Pie de página */
footer {
    padding: 2.5rem;
    background-color: #2e1a1a;
    color: #ffe6c7;
    text-align: center;
    font-family: 'Georgia', serif;
    border-top: 4px solid #7d3e3e;
}

footer a {
    color: #f7c873;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
    color: #ffd700;
}

/* Responsive design */

/* Pantallas entre 481px y 768px */
@media (max-width: 768px) and (min-width: 481px) {
    .cabecera {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .login-form {
        flex-direction: column;
        width: 100%;
    }

    h1 {
        text-align: center;
        width: 100%;
    }
}

/* Pantallas de 480px o menos */
@media (max-width: 480px) {
    .cabecera {
        align-items: center;
        gap: 1.5rem;
    }

    .login-form {
        width: 100%;
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .caballeros-img {
        max-height: 300px;
    }

    .bienvenida {
        padding: 1.5rem;
    }
}