:root {
  --color-primary: #d6dec7;
  --color-secondary: #d0d1be;
  --color-light: #ececec;
}

/* ---- 1. FONTS ---- */
.poppins-font {
  font-family: "Poppins", sans-serif;
}

.league-script-regular {
  font-family: "League Script", cursive;
  font-weight: 400;
  font-style: normal;
}


body {
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  margin: 0;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: "League Script", sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
}

p {
  font-family: 'Open Sans', sans-serif;
  color: #000;
  line-height: 2;
  font-size: 16px;
}

section {
  scroll-margin-top: 80px; /* Ajusta este valor según la altura de tu navbar */
}

/* Navbar Styling */
.navbar {
  background-color: var(--color-primary);
  padding: 5px 20px;
  z-index: 10;
  font-family: "Poppins";
}
.navbar-brand img {
  height: 70px;
}
.navbar-nav .nav-link {
  color: #000;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #555;
}

/* Portada */
.portada {
  height: 100vh;
  background: url('../cover.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 70px; /* Adjust for fixed navbar */
}
.portada img {
  max-height: 250px;
}

/* Mensaje */
.mensaje {
  margin: 60px 10px 60px 10px;
}

/* Fecha */
.fecha {
  padding: 50px;
  text-align: center;
  background-color: var(--color-light);
}

.fecha p {
  font-size: 22px;
}

.fecha h2 {
  margin-bottom: 10px;
}
.fecha .time {
  font-size: 3rem;
  font-weight: bold;
  color: #000;

}
.fecha .label {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #6c757d;
  font-family: "Poppins";
}


/* Dress Code */
.dress {
  margin: 60px 10px 60px 10px;
}

/* Ubicación */
.ubicacion {
  padding: 50px 0px;
  text-align: center;
  background-color: var(--color-primary);
}
.ubicacion a {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0d6efd;
  text-decoration: none;
}

/* Botón flotante */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.floating-button:hover {
  background-color: var(--color-secondary);
}


.confirmacion {
  background-color: var(--color-light);
  border-radius: 10px;
  padding: 30px;
  font-family: "Poppins";
}

.confirmacion h2 {
  background-color: var(--color-light);
}

.confirmacion form {
  margin: 40px;
}



/* Footer */
.footer {
  padding: 30px 20px;
}




