
body {
  margin: 0;
  padding: 0;
  font-family: 'Cormorant Garamond', serif;
  color: #1a1a1a;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}



body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(199, 211, 163, 0.4), rgba(199, 211, 163, 0.4)),
    url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(10%) brightness(1.1);
  opacity: 0.7;
  z-index: -1;
}


.church {
  width: 50px; 
  height: auto;
  display: block;
  margin: 0px auto 0px;
}


.section {
  margin-bottom: 30px;
}

button {
  background-color: rgba(255, 255, 255, 0.6);
  color: #1a1a1a;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 40px;
  border: none;
  border-radius: 50px; 
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

button:hover {
  background-color: #c7d3a3;
  color: #1a1a1a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}



.text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.5;
  color: #1a1a1a;
  margin-top: 12px;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.text.show {
  max-height: 200px; 
  opacity: 1;
}


.date {
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif; 
  font-size: 18px;
  line-height: 1.5;
}

input {
  padding: 10px;
  font-size: 16px;
  width: 80%;
  max-width: 300px;
  margin: 20px auto;
  margin-bottom: 6px;
  display: block;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Cormorant Garamond', serif;
}

#findButton {
  all: unset; 
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.6);
  color: #1a1a1a;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

#findButton:hover {
  background-color: #b1ba97;
  color: #1a1a1a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


#result {
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

#result.show {
  max-height: 200px;
  opacity: 1;
}



.prompt {
  margin-top: 8px;
  margin-bottom: 6px; 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 18px;
  line-height: 1.5;
}


h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: rgb(255, 255, 255, 0.75);
}

.nav-section {
  margin-bottom: 40px;
  text-align: center;
}

.nav-section h2 {
  font-family: 'Cormorant Italic', serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: #444;
}

.address {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.button-group button {
  background-color: #C7D3A3;
  color: #1a1a1a;
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.button-group button:hover {
  background-color: #b5baa5;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.church-icon {
  width: 40px;
  height: auto;
}


.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #1a1a1a;
}


.menu-toggle {
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: #1a1a1a;
  border-radius: 2px;
}

.menu {
  position: absolute;
  top: calc(100% + 0px);
  right: 40px; 
  transform: translateX(0%); 
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 0;
  padding: 16px 24px;
  display: none;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: opacity 0.3s ease;
  min-width: 180px; 
  align-items: center;
  text-align: center;
}



.menu a {
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: #6a7153; 
}


.menu.show {
  display: flex;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  margin: 40px 0 0;
  text-transform: lowercase;
}

.countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1a1a1a;
}

.countdown span {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 4px;
}

.wedding-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 15px 40px;
  border-radius: 50px; 
  margin: 30px auto;
  font-size: 18px;
  max-width: 500px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-family: 'Cormorant Garamond', serif;
  color: #1a1a1a;
}

.wedding-info strong {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  color: #444;
}

.divider {
  width: 1px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.2);
}

a {
  text-decoration: none;
  color: inherit;
}

.text-block {
  padding-right: 30px;
  padding-left: 30px;
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
}

