/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(images/fondo1v2.jpeg);
    background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
    max-height: 100vh;
}

header {
    /*background-color: #333;*/
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main {
    margin-top: 350px;
    margin-bottom: 300px;
    text-align: center;
    color: white;
}
.accommodation-information a{
    color: inherit;
    text-decoration: none;
}
.accommodation-information a[href*="http"] {
    background: url("images/external-link-26.png") no-repeat 100% 0;
    background-size: 16px 16px;
    padding-right: 19px;
}

/*
.button-6 {
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}
.button-6:hover,
.button-6:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}
.button-6:hover {
  transform: translateY(-1px);
}
.button-6:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}*/

.rsvp-button-main {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    background-color: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
.rsvp-button-main:hover {
    background-color: white;
    color: black;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

section {
    text-align: center;
    color: white;
    padding-bottom: 325px;

}

.logo h1 {
    margin: 0;
    font-size: 24px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Navbar Styles*/ 
/*.nav-list {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}*/

/*.nav-list li {
    margin: 0 15px;
}*/

/*.nav-list a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}*/
.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
    padding: 20px 40px;
    list-style: none;
  }

.nav-list ul {
    list-style: none;
    display: flex;
    gap: 50px; /* Espaciado entre los ítems */
    margin: 0;
    margin-right: 100px;
    padding: 0;
}

.nav-list li {
   /*display: inline;*/
   margin-right: 20px;
   margin: 0 15px;
}
.nav-list li:last-child {
   margin-right: 0; /* Elimina el espaciado después del último ítem */
}

.nav-list a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.nav-list a:hover {
   color: #000000; /* Efecto hover para los enlaces */
}

.nav-list .rsvp-button {
    padding: 8px 16px;
    border: 2px solid white;
    color: white;
    text-transform: uppercase;
    border-radius: 4px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.nav-list .rsvp-button:hover {
    background-color: white;
    color: black;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 4px;
    margin: 4px 0;
    background-color: white;
}

h2.principal {
    font-size: 115px;
}



/* Mobile Styles */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        /*background-color: #333;*/
        background-color: rgba(255, 255, 255, 0.5);
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .nav-list a {
        font-size: 20px;
    }

    iframe {
		width: 90%;
	}
    h2.principal {
        font-size: 3rem;
    }
}