html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Times New Roman', Times, serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
.navbar {
  transition: all 0.3s ease;
}
.navbar-brand {
	font-family: 'Times New Roman', Times, serif;
  font-weight: 600;
}
.navbar-light .navbar-nav .nav-link {
  transition: color 0.3s ease;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: rgb(150, 150, 132);
}
/* Hero Section */
.hero {
  /* Update the URL below with the actual path to your Auckland city image */
  background: url('images/auckland.jpg') no-repeat center center/cover;
	font-family: 'Times New Roman', Times, serif;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 40px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
/* Section Styles */
section {
  padding: 80px 0;
}
section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
}
/* Card Styles */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.btn-primary {
  background-color: #343a40;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: rgb(150, 150, 132);
}
/* Footer */
footer {
  background: #343a40;
  color: #ccc;
  padding: 20px 0;
  text-align: center;
}