body {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-weight: bold;
  background: linear-gradient(to bottom right, #F9DFC8, #F8BFB7, #F8BFB7);
  overflow-x: hidden;
}

/* Navigation */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 10px;
  gap: 10px;
  position: relative;
}

.logo {
  font-weight: 900;
  font-size: 35px;
  color: #91352B;
  padding-left: 30px;
}

.nav-right {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  padding-right: 30px;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #91352B;
  font-family: "Baloo Bhai 2", cursive;
  align-items: center;
  font-weight: 500;
}

nav a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 8px;
  border-radius: 6px;
}

nav a:hover {
  font-weight: bolder;
}

.login-btn {
  background: none;
  border: none;
  color: #91352B;
  font-size: 18px;
  font-family: "Baloo Bhai 2", cursive;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}
.login-btn:hover {
  font-weight: bolder;
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.text-content {
  text-align: right;
  padding-right: 15px;
  padding-top: 10px;
}

.hero h1 {
  font-family: "Baloo", cursive;
  font-weight: 900;
  font-size: clamp(80px, 13vw, 150px);
  line-height: 0.7;
  color: white;
  margin: 0;
  text-transform: uppercase;
}

.hero h2 {
  font-family: "Baloo", cursive;
  font-weight: 900;
  font-size: clamp(70px, 10vw, 100px);
  line-height: 1;
  color: white;
  margin: 0;
  text-transform: uppercase;
}

.hero p {
  font-size: 18px;
  margin-top: 10px;
  color: #742f24;
  font-weight: 500;
  max-width: 700px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  grid-template-rows: repeat(2, 160px);
  gap: 16px;
  justify-content: center;
}

.gallery img,
.book-now {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background .2s ease;
}

.gallery img {
  object-fit: cover;
}

.gallery img:hover,
.book-now:hover {
  transform: scale(1.05);
}

.book-now {
  width: 140px;
  height: 140px;
  background: #91352B;
  color: white;
  font-weight: bold;
  font-family: "Baloo", cursive;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
  padding: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.book-now:hover {
  background: rgba(145, 53, 43, 0.9);
  transform: scale(1.05);
  color: white;
}

/* Contact Section & Footer */
.contact-section {
  background-color: #91352b;
  color: #f9dfc8;
  padding: 30px 5px;
  font-family: "Baloo 2", cursive;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  margin-top: 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 40px 10px;
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-content h2 {
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
  font-family: 'Baloo', cursive;
}

.footer-left {
  flex: 1;
}

.footer-buttons {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0px;
  margin-top: 60px;
}

.footer-buttons a {
  background-color: transparent;
  color: #f9dfc8;
  border: 2px solid #f9dfc8;
  padding: 10px 26px;
  border-radius: 30px;
  font-family: "Baloo Bhai 2", cursive;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-buttons a:hover {
  background-color: rgba(249, 223, 200, 0.2);
  transform: scale(1.05);
}

.footer-content .copyright {
  font-size: 15px;
  opacity: 0.85;
  margin-top: 30px;
  color: #f9dfc8;
  border-top: 3px solid rgb(249, 223, 200);
  padding-top: 20px;
  text-align: center;
  margin-bottom: -1px;
  padding-bottom: 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px 60px 10px 60px;
}

.footer-text-and-buttons {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-text-and-buttons h2 {
  margin: 0;
  line-height: 1;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive Mobile Fix */
@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    gap: 25px;
    text-align: center;
  }

  .text-content {
    order: -1;
    text-align: end;
    padding: 0;
  }

  .hero h1 {
    font-size: 70px;
    color: #fff;
    margin-bottom: -8px;
  }

  .hero h2 {
    font-size: 50px;
    color: #fff;
    margin-top: -12px;
  }

  .hero p {
    font-size: 15px;
    color: #742f24;
    margin-top: 10px;
    padding: 0 12px;
    line-height: 1.5;
    font-weight: 500;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-content: center;
    padding: 0 0px;
  }

  .gallery img,
  .book-now {
    width: 150px;
    height: 150px;
  }

  .book-now {
    font-size: 40px;
    padding: 0px;
    line-height: 1.1;
  }

  .logo {
    font-size: 28px;
    padding-left: 10px;
  }

   .footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
  }

   .footer-content h2 {
    font-size: 32px;
    margin: 0;
    line-height: 1.1;
  }

   .footer-left {
    flex: 1;
  }

  .footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    margin: 0;
  }

 .footer-buttons a {
    font-size: 14px;
    padding: 6px 14px;
    white-space: nowrap;
  }

  .footer-text-and-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
  }

  .footer-gallery {
    display: none;
  }

  .footer-gallery img {
    width: 160px;
    padding: 0;
  }
}

/* Mobile Menu */
.hamburger {
  display: none;
  position: relative;
  width: 32px;
  height: 24px;
  cursor: pointer;
  flex-shrink: 0;
  justify-items: flex-end;
  z-index: 100;
}

.hamburger .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #91352B;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger .bar:nth-child(1) { top: 0; }
.hamburger .bar:nth-child(2) { top: 10px; }
.hamburger .bar:nth-child(3) { top: 20px; }

.hamburger.open .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.nav-container nav {
  transition: max-height .35s ease;
}

@media (max-width: 900px) {
  .hamburger { 
    display: block; 
    margin-left: auto;
    margin-right: 0;
  }
  .nav-right nav { 
    display: none; 
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fde3d9;
    border: 2px solid #8a2f27;
    border-radius: 12px;
    margin: 0 10px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 600;
    overflow: hidden;
    display: none;
  }

  .mobile-menu a {
    color: #8a2f27;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 5px 20px;
    border-radius: 6px;
    transition: background .2s;
  }

  .mobile-menu a:hover {
    background: rgba(138,47,39,0.1);
  }

  .mobile-login {
    margin-top: 0px;
    display: block;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background .2s;
  }

  .mobile-login:hover {
    background: rgba(138,47,39,0.1);
  }
}

#mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mobile-menu li {
  margin-bottom: 8px;
}
.hamburger:focus {
  outline: none;
}
.hamburger:focus-visible {
  outline: 2px solid rgba(145,53,43,0.7);
  outline-offset: 2px;
}
#mobile-menu {
  z-index: 90;
  width: calc(100% - 20px);
  box-sizing: border-box;
}
