<style>
  @import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&family=Playfair+Display&display=swap');
</style>
@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&family=Playfair+Display:ital,wght@0,400;1,600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: black;
  background-color: #f7f4f4;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  /*text-decoration: none;
  color: inherit;*/
}

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

p{
  line-height: 2;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

h1, h2, h3 {
  font-family: 'Inria Serif', serif;
  font-weight: 400;
}

h1 {
  font-size: 32px;
}

/* Navbar */
.container{
  min-height: 200vh;
  margin-bottom: 170px;
}

.navbar {
  width: 100vw;
  height: 70px;
  background-color: #d9d9d933;
  position: fixed;
  top: 0;
  left: 0;
}

.navbar-wrapper {
  display: flex;
  width: inherit;
  max-width: 1080px;
  height: inherit;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand{
  margin: 0;
  padding: 0;
  user-select: none;
  font-weight: 700;
}

.navbar_menu{
  display: flex;
  flex-direction: row;
  font-weight: 400;
  font-size: 18px;
  gap: 30px;
  text-transform: capitalize;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 600px;
  background-image: url("FOTO/BG B.jpg");
  background-size: cover;
  background-position: top;
  transition-duration: 3s;
  margin-bottom: 70px;
}

.hero:hover{
  background-position: bottom;
}

.hero p {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
}

.hero h1 {
  font-weight: 700;
  font-size: 96px;
  margin: 0;
}

/* Section */
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}

.section_title {
  font-size: 65px;
  font-weight: 700;
  margin: 0;
}

.section_wrapper {
  margin: 70px 0;
  display: flex;
  flex-direction: row;
  width: inherit;
  max-width: 1080px;
}

/* Section Content */
.section_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section_content h2 {
  font-size: 32px;
  margin: 0;
}

.section_content p {
  margin: 0;
  font-size: 18px;
}

.section_content .address {
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: 18px;
}

/* Section Image */
.section_image {
  width: 540px;
  height: 350px;
  flex: 1;
  background-size: cover;
  background-position: center;
}

#akad .section_image {
  background-image: url("FOTO/RING A.jpg");
}

#resepsi .section_image{
  background-image: url('https://images.unsplash.com/photo-1607190074257-dd4b7af0309f?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjN8fHdlZGRpbmd8ZW58MHx8MHx8fDA%3D');
}

/* Form Wrapper */
.form_wrapper {
  width: inherit;
  height: 567px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-image: url("FOTO/BG E.jpg");
  background-size: cover; /* atau background-size: 100% 100%; */
  background-position: bottom;
  margin: 34px 0;
  transition-duration: 5s;
}

.form_wrapper:hover{
  background-position: top;
}

/* Form Buku Tamu */
.form_buku_tamu {
  width: 700px;
  max-width: 500px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.199);
  padding: 50px 70px;
  gap: 25px;
  justify-content: center;
}

.form_group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
  font-family: 'inter' sans-serif;
}

.form_group input {
  width: 350px;
  height: 44px;
  border: 1px solid #d9d9d9;
  padding: 0 10px;
}

.form_wrapper button {
  background-color: #000;
  border: none;
  outline: none;
  width: 150px;
  height: 44px;
  color: white;
  font-size: 18px;
  font-weight: 400;
  cursor: auto;
}

#map .section_content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn_map{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 266px;
  height: 50px;
  border: none;
  outline-style: none;
  background-color: #fff;
}

.btn_map:hover{
  background-color: rgb(247, 241, 241);
  box-shadow: 3px 5px 8px rgba(0, 0, 0, 0.199);
}


/* Gallery List */
.gallery_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; 
  padding: 20px; 
  justify-content: center;
}

.gallery_list img {
  width: 100%; 
  height: auto; 
  max-width: 300px; 
  max-height: 300px; 
  object-fit: cover; 
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease-in-out; 
}

/* Footer */
footer {
  width: 100vw;
  height: 200px;
  display: flex;
  background-color: #2e1e0e;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer p,
footer h2 {
  margin: 0;
  color: white;
}
