* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  list-style: none;
  scroll-behavior: smooth;
  text-decoration: none;
  font-family: "roboto flex", sans-serif;
}
html,
body {
  overflow-x: hidden;
  background: var(--colorbody);
}
section {
  min-height: 100vh;
}

:root {
  --colorfooter: #936045;
  --colorHeader: #c6975d;
  --colorbody: #ded6c7;
}

.head h1 {
  font-size: 3rem;
  font-weight: bold;
  font-family: "gotham";
  text-align: center;
  color: #0f0f0f;
  justify-content: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.instagram .container a {
  margin-top: 20px;
}

.container h1 {
  font-family: "zilla slab", serif;
}

.container h2 {
  font-family: "zilla slab", serif;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8b4513;
}

.logo span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #8b4513;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8b4513;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.book-btn {
  background: #8b4513;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(63, 139, 19, 0.3);
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(53, 139, 19, 0.4);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding-top: 80px;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.mobile-nav-link {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #8b4513;
}

.mobile-book-btn {
  margin-top: 1rem;
}

/* Gallery section */

.gallery {
  max-width: 1224px;
  width: 100%;
  min-height: 100vh;
  margin: 100px auto;
  padding: 50px 8%;
}

.gallery h1 {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "zilla slab", serif;
  text-align: center;
  margin-bottom: 40px;
}

.container {
  display: flex;
  gap: 20px;
}
.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.photo img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

/* Footer section */
footer {
  width: 100%;
  height: 100px;
  background: #757473;
  color: #fffafa;
  padding: 5px 10% 20px 10%;
}
.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo2 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.location h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: "zilla slab", serif;
  padding-bottom: 5px;
}
.location p {
  line-height: 1;
  font-size: 12px;
}
.footer_content p {
  font-size: 16px;
  font-family: "roboto flex";
}

/* Responsive Design */

/* For tablets (width between 768px and 1024px) */

/* For mobile phones (width below 768px) */
@media (max-width: 768px) {
  body {
    position: relative;
  }
  .topbar {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .book-btn {
    display: none;
  }

  .hero {
    padding-top: 80px;
  }

  .logo img{
    width: 80px;
    height: 80px;
  }
  button {
    display: none;
  }

  .container {
    gap: 10px;
  }
  .column {
    gap: 10px;
  }
  .gallery {
    padding: 50px 2%;
  }

  footer {
    padding: 20px 4% 20px 4%;
    margin-top: -10%;
  }

  .location h2 {
    font-size: 10px;
  }
  .location p {
    line-height: 1.2;
    font-size: 4px;
  }
  .footer_content p {
    font-size: 10px;
  }
  .logo2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
}

@media (max-width: 468px) {
  .topbar {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: 70%;
    cursor: pointer;
    font-size: 25px;
  }

  .gallery {
    margin: 100px auto;
  }

  .container {
    gap: 5px;
  }
  .column {
    gap: 5px;
  }
}

/* Mobile Menu Animation */
.mobile-menu.active {
  display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
