*{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

h1{ font-size: 3.5em;}
h2{ font-size: 2.7em;}
h3{ font-size: 2em;}
p{ font-size: 1.25em;}
ul{ list-style: none;}
li{ font-size: 1.25em;}

button{
    font-size: 1.25em;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 5px;
    border: 2px solid rgba(0,0,0,0.3);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    color: white;
    background-color: blueviolet;
}

button:hover{
    background-color: rgb(101, 33, 165);
}

.container{
    max-width: 1400px;
    margin: auto;
}

.color-acento{
    color:blueviolet; }

header{
    background-color: rgb(245,245,245);
    
}

a{
    text-decoration: none;
    color: black;
}

header{
     display: flex;
     min-height: 70px;
     background-color: rgb(246, 213, 246);
     justify-content: space-between;
     align-items: center;
     padding: 10px;
}

.logo{
    display: flex;
    align-items: center;
}  

.logo img{
    height: 50px;
    margin-right: 10px;
}   

nav a{
    font-weight: 600;
    padding-right: 10px;
}

nav a:hover{
    color: white;
}

#hero{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    color: white;
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    )
    ,url("media/hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#hero h1{
    color: white;
}

#hero button{
    font-size: 1.75em;
}

#quienes-somos .container{
    text-align: center;
    padding: 200px 12px;
}

.video-container {
max-width: 30rem;
margin: auto;
}

.video-container iframe{
    width: 100%;
    aspect-ratio: 16 / 9;    
}

#nuestros-paquetes{
    background-color: rgb(30,30,30);
    color: white;
    text-align: center;
}

#nuestros-paquetes .container{
        padding: 100px 0px;
}

#nuestros-paquetes h2{
    margin-top: 0;
    font-size: 3.2em;
}

#nuestros-paquetes p{
    display: none;
}

#nuestros-paquetes .carta{
    background-position: center center;
    background-size: cover;
    padding: 50px;
    margin: 20px;
    border-radius: 15px;
}

.carta:first-child{
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    )
    ,url("media/bodas.jpg");
}

.carta:nth-child(2){
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    )
    ,url("media/XV-Años.jpg");    
}

.carta:nth-child(3){
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    )
    ,url("media/eventos-sociales.jpg");    
}

#caracteristicas .container{
    text-align: center; 
    padding: 200px 12px;   
}

#caracteristicas li{
    margin: 16px 0px;
    font-weight: bold;        
}

#final{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(30,30,30);
    color: white;
    height: 80vh;
}

#final h2{
    font-size: 9vw;
}

#final button{
    font-size: 5vw;
}

footer{
    background-color: rgb(230,230,230);
}

footer p{
    margin: 0;
    color: rgb(100, 100, 100);
    padding: 12px;
}

footer .container{
height: 150px;
display: flex;
justify-content: center;
align-items: flex-end;
}

@media (max-width:700px) {
    header{
        flex-direction: column;
    }
    
    nav{
        padding: 10px 0px;
    }
}

