@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Science+Gothic:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+US+Trad+Guides&family=Science+Gothic:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(251, 249, 250);
  color: #333;
}

.booking {
  background-color: white;
  font-weight: 700;
  font-style: italic;
  padding: 12px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  font-size: 24px;
}

.navbar a {
  color: black;
  text-decoration: none;
}

.navbar a:hover {
  color: darkslategray;
}

footer {
  background-color: #ffa07a;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 30px;
  justify-content: center;
  justify-content: space-between;
}

button {
  font-weight: 700;
  background-color: lightsalmon;
  cursor: pointer;
  padding: 12px;
  border: none;
  border-radius: 10px;

  display: block;
  margin: 10px auto;
}

button:hover {
  background-color: darkorange;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

header {
  background-color: #ffa07a;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
}

.hero-image-container {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.hero-mid-img {
  max-width: 200px;
  height: auto;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-mid-img:hover {
  transform: scale(1.05);
}

.hero {
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

body {
  font-family: "Science Gothic", sans-serif;
}

.hero-content {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  color: white;
}

.main-text {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  animation: textFade 2s ease forwards;
}

@keyframes textFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  animation: logoAnimation 2s ease forwards;
}

@keyframes logoAnimation {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.About {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.left {
  background: #ffe8cc;
  padding: 20px;
  font-size: 30px;
  text-align: center;
}

.right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  height: 450px;
  gap: 12px;
  background-color: bisque;
}

.photos {
  border: 1px solid transparent;
  margin-top: 5px;
  margin-bottom: 5px;
}

.photos img {
  width: 100%;
  height: 200px;
}

.menu {
  font-size: 20px;
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: black;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    position: absolute;
    top: 70px;
    right: -100%;
    background-color: #ffa07a;
    width: 100%;
    height: auto;
    transition: 0.5s;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar.active {
    right: 0;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .search-box-container {
    display: none;
  }

  .About {
    grid-template-columns: 1fr;
  }
}

.search-box-container {
  display: flex;
  align-items: center;
  margin: 0 20px;
}

.search-input {
  width: 250px;
  height: 40px;
  padding: 10px 15px;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 20px;
  outline: none;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  font-family: inherit;
}

.search-input:focus {
  width: 300px;
  background-color: white;
  border-color: lightsalmon;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
  color: #888;
  font-style: italic;
  text-transform: capitalize;
}

@media (max-width: 1024px) {
  .search-input {
    width: 150px;
  }
  .search-input:focus {
    width: 180px;
  }
}

a {
  text-decoration: none;
  color: black;
}
