/* Custom styles for Vatican City Tours website */

/* Make scrolling smooth and account for fixed navbar */
html {
  scroll-behavior: smooth;
}

body {
  padding-top: 70px;
}

/* Hero section with background image and overlay */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 75vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Section headings */
section h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Tours cards */
.card-title {
  font-weight: 600;
}

.card-text {
  font-size: 0.95rem;
}

/* Why choose us icons */
.why-item i {
  font-size: 2rem;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
}

.footer {
  background: #0d6efd;
  color: #fff;
  padding: 2rem 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Contact form */
.contact-form .form-control {
  border-radius: 0;
}

.contact-form .btn-primary {
  border-radius: 0;
}

/* Booking form */
#booking-form .form-control {
  border-radius: 0;
}

#booking-form .btn-primary {
  border-radius: 0;
}