/* style.css - Bee Book Travel & Tours */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-top: 76px;
}

:root {
  --primary: #F15A24;
  --primary-dark: #d94614;
  --secondary: #FFB347;
  --accent-teal: #0F7173;
  --dark-bg: #1E2F35;
  --light-bg: #FFF8F0;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 35px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 0.8rem 0;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-icon {
  background: var(--primary);
  color: white;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 8px;
  font-size: 1.2rem;
}
.tagline-nav {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-teal);
}
.nav-link {
  font-weight: 600;
  color: #2c3e2f;
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}
.btn-book-nav {
  background: var(--primary);
  color: white !important;
  border-radius: 40px;
  padding: 0.5rem 1.2rem !important;
  margin-left: 0.5rem;
}
.btn-book-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  background: linear-gradient(105deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%),
  url('image/n2.png');
  background-size: cover;
  background-position: center 22%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 2rem;
}
.hero-content {
  color: white;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.btn-primary-custom {
  background: var(--primary);
  border: none;
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 50px;
  transition: 0.2s;
  box-shadow: 0 6px 14px rgba(241,90,36,0.3);
  color: white;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(241,90,36,0.4);
  color: white;
}
.btn-outline-light-custom {
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  border-width: 2px;
}
.btn-outline-primary-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 40px;
  font-weight: 600;
  transition: 0.2s;
  background: transparent;
}
.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: white;
}
.section-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: #1E2F35;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 70px;
  height: 4px;
  background: var(--primary);
  border-radius: 3px;
}
.badge-tag {
  background: var(--primary);
  color: white;
  border-radius: 30px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.8rem;
}
.card-service, .dest-card {
  border: none;
  border-radius: 28px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-service:hover, .dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.dest-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.dest-card:hover img {
  transform: scale(1.03);
}
.form-card {
  background: var(--light-bg);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-control, .form-select {
  border-radius: 20px;
  border: 1px solid #e2dcd5;
  padding: 12px 18px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(241,90,36,0.2);
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(241,90,36,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 1.6rem;
  color: var(--primary);
}
.footer {
  background: var(--dark-bg);
  color: #ddd;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer a {
  color: #ffb347;
  text-decoration: none;
}
.footer a:hover {
  color: white;
}
.social-icons a {
  background: rgba(255,255,255,0.1);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.2s;
}
.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  body { padding-top: 70px; }
  .hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .hero { min-height: 70vh; }
}
.fade-up {
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}