@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,400;0,700;1,300;1,400&display=swap');

/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* Configuración de tipografía global */
body {
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1 {
    font-family: "Oswald", sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #333;
}

h2 {
    font-family: "Oswald", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #333;
}
.cta {
    padding: 15px 25px;
    font-size: 1.8rem;
    border-radius: 15px;
}
/*/*******************************************************/
   
.carousel-caption {
    position: absolute;
    z-index: 2;
    color: white;
    bottom: 20%;
}
.carousel-caption h5 {
    font-family: "Oswald", sans-serif;
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    /*margin-top: -200px;*/
}
.carousel-caption p {
    font-size: 1.8rem;
    width: 100%;
}

.carousel-item img {
    position: relative;
    object-fit: cover;
    /*height: 100vh; */
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Ajusta la opacidad a tu preferencia */
    z-index: 1;
}
/*/*******************************************************/
#about {
    background-color: #f5b8f0;
    background-image: url('../imgs/fondo-pink.jpg'); /* Cambia la ruta de la imagen */
            background-size: cover;
            background-position: center;
    padding: 50px 0;
}
/*/*******************************************************/
#services {
    padding: 55px 0;
    background-image: url('../imgs/boda01.jpg'); /* Reemplaza con la URL de tu imagen */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*/*******************************************************/
#precios {
    padding: 55px 0;
}
/*/*******************************************************/
#templates {
    padding: 55px 0;
    background-image: url('../imgs/templates.jpg'); /* Reemplaza con la URL de tu imagen */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
#templates h2 {
    color: #fff;
}
/*/*******************************************************/
#contacto {
    padding: 55px 0;
    background-image: url('../imgs/contacto.jpg'); /* Reemplaza con la URL de tu imagen */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*/*******************************************************/
@media(max-width: 767px){
    .carousel-item {
        min-height: 100vh;
        background-color:#f8f;
    }
    .carousel-item img {
       height: 100vh;
    }
    .carousel-caption {
        bottom: 30%;
    }
    .carousel-caption h5 {
        font-size: 2.5rem;
        margin-top: 0;
    }
    .carousel-caption p {
        font-size: 1rem;
        width: 100%;
        line-height: 1.2;
    }
    .cta {
        padding: 15px 25px;
        font-size: 1.3rem;
        border-radius: 15px;
        margin-top: 25px;
        margin-bottom: 25px;
        width: 100%; 
    }
}