/* style.css - Shared stylesheet for HBA Travel website */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}
a {
  color: #f57c00;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
  /* Remove display: flex and related flex properties */
}

/* Use this only where needed */
.flex-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Header & Navigation */
header {
  background: #ffffff;
  border-bottom: 2px solid #f57c00;
  padding: 1rem 0;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f57c00;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav li {
  transition: transform 0.2s ease-in-out;
}
nav li:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #f57c00, #ff9800);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: auto;
}

.hero .container {
  display: block;
  text-align: center;
  gap: 0;
  align-items: initial;
}

/* Buttons */
.btn {
  background: #f57c00;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.btn:hover {
  background: #e65100;
}

/* Section Titles */
.section-title {
  text-align: center;
  color: #f57c00;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #f57c00;
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

/* Footer */
footer {
  background: #f57c00;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
footer a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
nav .logo img {
  height: 50px;
  vertical-align: middle;
}

button.plan-trip {
  margin-top: 20px; /* or adjust as needed */
  /* or margin-left: 10px; if side by side */
}

.hero .container {
  display: block;
  text-align: center;
  gap: 0;
  align-items: initial;
}

.hero .btn {
  margin-top: 1.5rem;
  display: inline-block;
}