/* Global font styles */
body {
  font-family: 'Nunito Sans', sans-serif;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #000;
}


/* Navbar */
/* starts transparent, turns black on scroll */
#mainNavbar {
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1030;
}

#mainNavbar.scrolled {
    background-color: #000; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Logo sizing */
.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-link {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background-image: url("images/car-try-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 0;
}

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

.hero-section h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.hero-section .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 30px;
}


/* Process */
.padding-medium {
    padding: 3rem 1rem;
}

.padding-medium-2 {
    padding: 2rem 1rem;
}

#about {
    background-color: #f8f9fa; 
}

.btn-primary {
    background-color: #FFD700;
    color: #000;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6c200;
    color: #000;
}


/* Packages */
.plan-post {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.plan-post:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.plan-post .mt-auto {
  margin-top: auto;
}

.price-option p {
  margin: 0.25rem 0;
}

.header-top {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666;
}

/* Tab buttons */
#packageTabs .nav-link {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  margin-right: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.3s, color 0.3s;
}

#packageTabs .nav-link.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

#packageTabs .nav-link:hover {
    background-color: #f1f1f1;
    color: #000;
}

/* Info */
#info {
    background-color: #f8f9fa; 
}

#info .header-top {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#info p {
    color: #333;
    font-size: 1rem;
}

@media (max-width: 768px) {
    #info .border-end {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1rem;
    }
}

#footer img {
    max-width: 140px;
    width: 100%;
    height: auto;
}





/* Booking page */
form {
    max-width: 600px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

form label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

form input, form select, form button {
    padding: 0.6rem;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    background-color: black;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #444;
}
