/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1e1e2f;
  background: #f5faff;
  line-height: 1.6;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e1e2f;
}

.branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e1e2f;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #1e1e2f;
  font-weight: 700;
  padding: 8px 10px;
  transition: color 0.3s ease;
  font-weight: bolder;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #3ccfcf;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #3ccfcf;
}

.nav-links a:hover::after {
  width: 100%;
}
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-buttons .login {
  text-decoration: none;
  color: #1e1e2f;
}
.book-btn {
  background: #3ccfcf;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hero-text {
  flex: 1 1 500px;
}
.badge {
  display: inline-block;
  background: #defcf8;
  color: #18b4a8;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 20px 0;
  color: #1e1e2f;
}
.hero-text p {
  max-width: 500px;
  color: #444c5c;
  margin-bottom: 20px;
}
.hero-buttons .btn {
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 10px;
}
.filled {
  background: #3ccfcf;
  color: white;
}
.outline {
  border: 2px solid #3ccfcf;
  color: #3ccfcf;
  background: transparent;
}
.hero-image {
  flex: 1 1 400px;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar, .hero-section {
    flex-direction: column;
    text-align: center;
  }
  .nav-links {
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
    
      .nav-links { display: none; flex-direction: column; background: #fff; width: 100%; padding: 15px; }
      .nav-links.active { display: flex; }
      .menu-toggle { display: block; }
      .logo-text { font-size: 1rem; }
    
}
