@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,900&display=swap');

*, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100dvh;
    width: 100dvw;
    font-family: 'Barlow', sans-serif;
    color: #2c3e50;
}

body {
    background-image: url("../img/fondo.png");
    background-color: #f4f1ea;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 50dvh;
    background-attachment: fixed;
}

header {
    height: 15%;
    text-align: center;
    padding-top: 2rem;
}

header h1 {
    font-weight: 600;
    font-size: 2.5rem;
    color: #1a434e; 
    text-transform: uppercase;
    letter-spacing: 2px;
}

header hr {
    width: 6.25rem;
    height: .1875rem;
    background-color: #c5a059; /* Dorado San Ignacio */
    border: none;
    margin: 1rem auto;
}

nav {
    height: 7dvh;
    width: fit-content;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(.625rem);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0 2rem;
    line-height: 7dvh;
}

nav a {
    display: inline-block;
    padding: 0 1.5rem;
    text-decoration: none;
    color: #1a434e;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #c5a059;
    transform: translateY(-2px);
}

main {
    height: 53dvh;
    text-align: center;
    padding-top: 5dvh;
}

form, article {
    background: rgba(255, 255, 255, 0.85);
    height: 100%;
    width: 60%;
    margin: 0 auto;
    padding: 1.4rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #c5a059;
}

section {
    width: 100%;
    height: 40%;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
}

section div img{
    width: 100%;
}

section div{
    display: inline-block;
    width: 10%;
    text-align: center;
}

label {
    display: block;
    height: 5%;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a434e;
}

select, textarea, button, input {
    width: 100%;
    height: 17%;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
}

select option::checkmark{
  order: 1;
  padding-left: 1rem;
  content: "⛪";
}

select option{
  padding: .7rem;
}

select, ::picker(select) {
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem; 
    appearance: base-select;
}

select::picker-icon {
  color: #1a434e;
  transform: rotate(90deg);
  transition: .4s transform;
}

select:open::picker-icon {
  transform: rotate(0deg);
}

textarea {
    height: 20%;
    resize: none;
}

button {
  color: #1a434e;
  font-weight: 600;
  width: 30%;
}

footer {
    margin-top: 5dvh;
    height: 20dvh;
    text-align: center;
}
footer hr {
    display: inline-block;
    width: 25vw;
    border: none;
    border-top: 1px solid #c5a059;
}

footer div {
    display: inline-block;
    width: 6rem;
    vertical-align: middle;
    margin: 0 1rem;
}

footer img {
    max-width: 100%;
    height: auto;
}