@font-face {
  font-family: 'BookmanCustom';
  src: url('fonts/BookmanOldStyle.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Airthay';
  src: url('fonts/Airthay-DemoVersi.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Arial, Helvetica, sans-serif;
  src: url('fonts/Airthay-DemoVersi.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #333;
  text-align: center;
} */

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  background-color: #fdfbf5;
}

/* header {
  padding: 20px;
  background: #fdfbf5;
} */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fdfbf5;
  padding: 20px;
}
h2 {
  color: #8b5e3c;
}
label {
  font-weight: 500;
}

nav a {
  margin: 0 15px;
  color: #444;
  text-decoration: none;
  font-weight: 500;
}

.note {
  font-style: italic;
  color: #666;
  margin-bottom: 2px;
}

.hero {
  padding: 40px 20px;
}

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

.hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3em;
  margin: 20px 0 10px;
}

.hero h2 {
  font-weight: 300;
  color: #777;
}

.titleName {
  font-family: 'BOOKOS.TTF';
  font-weight: lighter;
  color: #777;
}

.primary {
  font-family: 'BOOKOS.TTF';
  font-weight: 100;
  font-size: 20px;
  color: #62AFE1;
}

.invitation {
  margin: 0px 0px;
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
  padding: 20px;
  /* border-radius: 8px; */
  /* background-color: white; */
}

.form-section {
  margin: 16px 16px;
}

form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* form input, form textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-section input:focus,
.form-section textarea:focus {
  outline: none;
  border: 1px solid #6da06f;
  box-shadow: 0 0 4px #6da06f33;
} */


/* form button {
  padding: 12px;
  background: #6da06f;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
} */

.lightText {
  font-family: sans-serif;
}

.form-section input::placeholder,
.form-section textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

.form-section input:focus,
.form-section textarea:focus {
  outline: none;
  border-bottom: 1px solid #6da06f;
  background: transparent;
}

.form-section textarea {
  padding: 10px;
}

.form-section button {
  background: transparent;
  color: #bca66a;
  border: 1px solid #bca66a;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 1rem;    
  font-family: 'BOOKOS.TTF';
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.form-section button:hover {
  background-color: #f5f2e8;
  color: #bca66a;
}

footer {
  background: #e4f1fd;
  text-align: center;
  padding: 20px;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
}

/* footer {
  background: #e4f1fd;
  padding: 20px;
  font-size: 12px;
  
} */

/* .footer-links a {
  margin: 0 10px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
} */

.social-icons img {
  width: 24px;
  margin: 0 5px;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 6px 8px;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  font-size: 12px;
  white-space: nowrap;
  z-index: 10;
}

a:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}