/* GENERAL */
body {
    margin: 0;
    font-family: Arial;
    background: #f4f4f4;
    text-align: center;
}

 /* NAVBAR */
    nav{
        background:#0d0d0d;
        padding:15px;
        position:fixed;
        width:100%;
        top:0;
        z-index:1000;
    }

    nav ul{
        list-style:none;
        display:flex;
        justify-content:center;
        gap:30px;
        margin:0;
        padding:0;
    }

 nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:25px;
}

/* LINKS NORMALES */
nav ul li a{
    text-decoration:none;
    font-weight:bold;
    color:white;
    transition:0.3s;
}

nav ul li a:hover{
    color:#FFDE42;
}

/* BOTÓN INICIAR SESIÓN */
.btn-iniciar{
    background-color:#FFDE42;
    color:black !important;
    padding:8px 15px;
    border-radius:10px;
    transition:0.3s;
}

.btn-iniciar:hover{
    background-color:#7a47aa;
    color:white !important;
}

/* HERO */
    .hero{
        height:105vh;
        background:url('https://tdsportswear.com/wp-content/uploads/2025/01/d52-1170x658.png') center/cover no-repeat;
        display:flex;
        align-items:center;
        justify-content:center;
        color:white;
        text-align:center;
    }

    .hero h1{
        font-size:60px;
     
        padding:20px;
        border-radius:10px;
    }
/* TITULOS */
h2 {
    margin-top: 20px;
}

/* FORMULARIOS */
form {
    margin: 20px;
}

input, button {
    padding: 8px;
    margin: 5px;
}

/* GALERIA ADMIN */
.galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* TARJETAS */
.card {
    background: white;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ccc;
    width: 180px;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

/* BOTONES */
.botones a {
    text-decoration: none;
    margin: 5px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}

.eliminar {
    background: red;
}

.editar {
    background: blue;
}



.btn-ver {
    background: green;
}



/* GALERIA PUBLICA */
.galeria-publica {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}

.galeria-publica img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.galeria-publica img:hover {
    transform: scale(1.05);
}


    /* FOOTER */
    footer{
        background:#0d0d0d;
        color:white;
        text-align:center;
        padding:20px;
    }
