@font-face {
  font-family: "Gaegu Regular";
  src: url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.eot");
  src: url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.svg#Gaegu Regular")format("svg");
}

@font-face {
  font-family: "Gaegu Bold";
  src: url("https://db.onlinewebfonts.com/t/fbfb3e6900f5754c6f1cc6bc6e46557d.eot");
  src: url("https://db.onlinewebfonts.com/t/fbfb3e6900f5754c6f1cc6bc6e46557d.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/fbfb3e6900f5754c6f1cc6bc6e46557d.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/fbfb3e6900f5754c6f1cc6bc6e46557d.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/fbfb3e6900f5754c6f1cc6bc6e46557d.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/fbfb3e6900f5754c6f1cc6bc6e46557d.svg#Gaegu Bold")format("svg");
}

body, html, header {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  font-family: "Gaegu Regular";
}

h1 {
  text-align: center;
  font-family: "Gaegu Regular";
  margin: 30px;
  font-size: 35px;
}

p {
  font-family: "Gaegu Regular";
}

.container {
  width: 65%; /* Adjust width as needed */
  margin: 0 auto; /* Centers the container horizontally */
  text-align: center; /* Centers the button */
}

.story {
  width: 70%;
  text-align: center;
  margin: 0 auto;
}
.line {
  height: 1px;
  background-color: black;
  width: 100%; /* Line spans the entire container */
  margin: 20px 0; /* Adds space above and below the line */
  position: relative;
}

.button {
  font-family: "Gaegu Regular";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 5px 100px;
  border: 1px solid black;
  font-size: 30px;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease; /* Smooth transition */
}

.button:hover {
  color: white;
  background-color: black;
}

.top-bar {
  height: 50px;
  background-color: #FEF8E8;
  text-align: center;
  padding-top: 1px;
  opacity: 75%;
}

.top-small {
  margin-top: 5px;
}

.middle {
  margin-top: 200px;
}

.logo {
    margin: 0 auto;
    padding-top: 10px;
    height: auto;
    width: 130px;
}

.address {
  font-size: 35px;
  letter-spacing: 1px;
  font-family: "Gaegu Bold";
  color: black;
}

.address-container {
  border-radius: 10px;
  border: 1px solid gray; /* Add a border */
  padding: 50px; /* Add padding to create space between the border and content */
  text-align: center; /* Center align the content */
  width: 75%; /* Set a width to center the container */
  margin: 0 auto; /* Center the container */
}

.social-icons {
  text-align: center;
  margin-top: 20px;
  display: inline-block;
  margin: 0 10px;
  font-size: 24px;
  color: gray; /* Adjust color as needed */
}

.nav-bar {
  text-align: left;
  margin-left: 15%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-bar ul {
  list-style-type: none;
}

.nav-bar ul li {
  display: inline;
  margin-right: 35px;
}

.nav-bar ul li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.nav-bar ul li a.highlighted {
  border: 1px solid black;
  padding: 5px 10px;
  border-radius: 5px;
}

.nav-bar ul li a.highlighted:hover {
  background-color: #f0f0f0; /* Change background color on hover */
  color: black; /* Change text color on hover */
}

.nav-socials {
  margin-right: 19%;
  font-size: 24px;
  justify-content: flex-end;
  gap: 10px;
  display: flex;
  text-decoration: none;
  color: black;
  opacity: 80%;
}

hr.solid {
  margin: 0 auto;
  width: 68%;
  border: 1px solid gray;
}

hr.dashed {
  margin: 0 auto;
  width: 95%;
  border: 2px dashed gray;
}

main {
  text-align: center;
  margin: 0 auto;
  width: 70%;
  height: auto;
}

main img {
  max-width: 100%;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.item {
  width: 300px; /* Adjust as needed */
  height: 280px;
  margin: 2px;
  text-align: center;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: box-shadow 0.3s ease;
}

.item:hover {
  filter: brightness(90%);
}

.description {
  background-color: #f0f0f0;
  color: gray;
  font-family: "Gaegu Regular";
  padding: 10px;
  font-size: 25px;
  margin-top: -10px;
}

/* Footer */

#footer {
	background: #FFF8E2;
	padding: 2em 0 3em 0;
	text-align: center;
}

	#footer .icons a {
		-moz-transition: opacity 0.2s ease-in-out;
		-webkit-transition: opacity 0.2s ease-in-out;
		-ms-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
		opacity: 0.35;
	}

		#footer .icons a:hover {
			opacity: 0.75;
		}

	#footer .copyright {
		color: #999;
		font-size: 0.9em;
		line-height: 1em;
		margin: 2em 0 0 0;
		padding: 0;
		text-align: center;
	}

		#footer .copyright a {
			color: inherit;
		}

		#footer .copyright li {
			border-left: solid 1px #dddddd;
			display: inline-block;
			list-style: none;
			margin-left: 1em;
			padding-left: 1em;
		}

			#footer .copyright li:first-child {
				border-left: 0;
				margin-left: 0;
				padding-left: 0;
			}

      /* Add media queries for responsive design */
    @media (max-width: 768px) {
      .container, .story, main {
        width: 90%; /* Adjust the width to fit smaller screens */
      }

      .nav-bar {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
      }

      .nav-bar ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 0;
      }

      .nav-bar ul li {
        margin: 10px 0;
      }

      .nav-socials {
        margin-right: 0;
        justify-content: center;
        gap: 10px;
      }

      .logo {
        width: 100px; /* Adjust logo size for smaller screens */
      }

      .top-bar p {
        font-size: 14px; /* Adjust font size for smaller screens */
      }

      .address-container {
        width: 90%;
        padding: 20px; /* Reduce padding for smaller screens */
      }

      .address {
        font-size: 28px; /* Adjust font size for smaller screens */
      }

      .gallery {
        flex-direction: column;
      }

      .item {
        width: 100%; /* Make gallery items full width */
        height: auto;
      }

      .button {
        padding: 5px 50px; /* Adjust padding for smaller screens */
        font-size: 20px; /* Adjust font size for smaller screens */
      }
    }

    /* Additional adjustments for even smaller screens */
    @media (max-width: 480px) {
      h1 {
        font-size: 28px; /* Adjust font size for smaller screens */
        margin: 20px;
      }

      .nav-bar ul li a {
        font-size: 16px; /* Adjust font size for smaller screens */
      }

      .address {
        font-size: 24px; /* Adjust font size for smaller screens */
      }

      .description {
        font-size: 20px; /* Adjust font size for smaller screens */
      }

      .social-icons {
        font-size: 20px; /* Adjust font size for smaller screens */
      }
    }
