/* reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


.decorative-half-circle{
 position: fixed;
 top: 50%;
 right: -100px;
 transform: translateY(-50%);
 width: 300px;
 height: 300px;
 background-color: #F56340;
 border-radius: 50%;
 z-index: -1;   
}


body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #EDE7D5;
    color: black;
    line-height:1.6;
    position: relative;
    margin: 0;
    padding: 0;
    overflow-x: hidden;

}

header{
    background: color 232323px;
    color: 0;
    padding:1.5rem 2rem;
    text-align:center;
    position: relative;
    margin: 0;
    padding: 0;
}

nav ul {
    display:flex;
    justify-content: center;
    list-style: none;
    margin-top: 1rem;
    flex-wrap: wrap;
}

nav li{
    margin: 0 1rem;
}

nav a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition:color 0.3s ease;
}

nav a:hover {
    color: #ffcc00;
}

main{
    padding: 2rem;
    text-align: center;
}

footer {
    background color: black;
    color: black;
    text-align: center;
    padding: 1rem;
    maargin-top: 2rem;
}

h1{
text-align: center;
margin-top: 20px;
}

.login-link{
    position:absolute;
    top: 20px;
    right: 30px;
    font-size: 1rem;
    font-weight: bold;
    z-index: ;
}

.login-link a {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color:#F56340;
    padding: 0.5rem 1rem;
    border: 4px solid #F56340
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
}

.login-link a:hover{
    background-color:#EDE7D5;
    color: #F56340;
    border: 2px solid #F56340;
}

.logo-center {
    text-align: center;
    flex-grow: 1;
}

.logo-center img {
    height: 200px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.logo-left{
    position: absolute;
    left: 20px;  
    top: 20px;  
    padding: 10px;
}

.logo-left img {
    height: 150px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.taller-banner{
width: 100vw;
height: 300px;
margin: 0;
padding: 0;
background-image: url("Imagenes/banner.jpg");
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
}

.citas-banner{
    width: 100vw;
    height: 300px;
    margin: 0;
    padding: 0;
    background-image: url("Imagenes/citas.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    }

.contacto-banner{
    width: 100vw;
    height: 300px;
    margin: 0;
    padding: 0;
    background-image: url("Imagenes/contacto.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    }

.servicios-banner{
    width: 100vw;
    height: 300px;
    margin: 0;
    padding: 0;
    background-image: url("Imagenes/servicios.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    }

.tienda-banner{
    width: 100vw;
    height: 300px;
    margin: 0;
    padding: 0;
    background-image: url("Imagenes/tienda.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    }

.descripcion{
    text-align: center;
    padding: 20px;
    margin: 20 px 0;
    border-radius: 8px;
}

.carousel {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    position: relative;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.7);
}

.prev{
    left: 10px;
}

.next{
    right: 10px;
}

