@font-face { font-family: Bodoni; src: url('../Fonts/BodoniFLF-Roman.ttf'); } 
@font-face { font-family: Bodoni-Bold; src: url('../Fonts/BodoniFLF-Bold.ttf'); }
@font-face { font-family: Bodoni-Italic; src: url('../Fonts/BodoniFLF-Italic.ttf'); } 
@font-face { font-family: Bodoni-BoldItalic; src: url('../Fonts/BodoniFLF-BoldItalic.ttf'); } 
@font-face { font-family: GreatVibes; src: url('../Fonts/GreatVibes-Regular.ttf');  }
@font-face { font-family: SilverFake; src: url('../Fonts/silverfake.otf');  }

@font-face { font-family: JimmyScript; src: url('../Fonts/JimmyScript-Rg.otf');  }

@font-face { font-family: PlayfairDisplay; src: url('../Fonts/PlayfairDisplay-Regular.ttf');  }


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*
      Century Gothic
      Lucida Handwriting
      Bodoni
  */
}


body {
  background: url('../Images/Horizontal/IMG_6640.JPG');
  /* background: url('../Images/Vertical/IMG_6171.JPG'); */
  /* background: url('../Images/Vertical/Vertical-Backdrop-Katie-Dalton.jpg'); */
  
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  --focal-point-x: 50%;
  --focal-point-y: 50%;
  background-position: var(--focal-point-x) var(--focal-point-y);
}


main {
  max-width: 768px;  /* Restrict content width */
  margin: 0 auto;    /* Center content horizontally */
  background-color: rgba(240,235,210, 0.9);  /* White background with slight transparency */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);  /* Optional shadow for depth */
}

section {
  padding-bottom:40px;
}

h2 {
  font-size: 5rem;
  margin-bottom: 20px;
  font-family: 'GreatVibes', 'Century Gothic', 'Georgia', serif; 
}

h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'GreatVibes', 'Century Gothic', 'Georgia', serif; 
}

#our-story p {
  font-size: 2rem;
  margin: 10px 0 20px;
  line-height: 1.6;
  font-family: 'GreatVibes', 'Century Gothic', 'Georgia', serif; 
}

.btn {
  display: inline-block;
  background-color: rgb(107, 50, 12); 
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  margin: 10px;
}


#our-story {
  max-width: 80vw;
  font-family: 'GreatVibes', 'Century Gothic', 'Georgia', serif; 
}

.container {font-family: PlayfairDisplay, 'Garamond', 'serif'; }

#wedding-detail , #registry , #hotels {font-family: PlayfairDisplay, 'Garamond', 'serif'; }

p {
  font-family: PlayfairDisplay, 'Garamond', 'serif';
  font-size: 1.4rem;
  margin: 10px 0 20px;
  line-height: 1.5;
}

#registry > p { font-size: 1.4rem;}


.guest-entry {
  background-color: white;
  border: 1px solid #ccc;      /* subtle border */
  border-radius: 8px;          /* rounded corners */
  padding: 15px 20px;          /* some spacing inside */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle shadow */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;         /* space between cards */
}

.guest-names > label, .guest-entry > input {
  width: 100%;
}






@media (max-width: 768px) {
  main { max-width: 80vw;  /* Restrict content width */ }
  .guest-entry { max-width: 80vw; }

  body {
    background-image: url('../Images/Horizontal/IMG_6640.JPG');
    /* background-image: url('../Images/Vertical/Vertical-Backdrop-Katie-Dalton.jpg'); */
    text-align: center;
     background-size: none;
    background-repeat: repeat;
    --focal-point-x: 50%;
    --focal-point-y: 50%;
    background-position: var(--focal-point-x) var(--focal-point-y);
  }
  #our-story {
    width: 70vw;
  }
}

