/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #132e54;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background-color: #1f2937;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
header nav a {
  margin-left: 1.5rem;
  color: #f9fafb;
  font-weight: 500;
  transition: color 0.3s ease;
}
header nav a:hover {
  color: #facc15;
}

/* Hero Section */
 .hero {
  position: relative;
  text-align: center;
  padding: 30px 20px;
  background-color: #938e8e;
}

.hero-video {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: block;
  margin: 0 auto;
}

.hero h2 {
  margin-top: 20px;
  font-size: 2rem;
  color: white;
}
  .hero a {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background-color: #ffc107;
    color: #b31a1a;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .hero a:hover {
    background-color: #e0a800;
  } 

/* Fleet Section */
.fleet {
  padding: 4rem 2rem;
}
.fleet-type {
  margin-bottom: 3rem;
}
.fleet-type h2 {
  font-size: 1.8rem;
  border-bottom: 3px solid #1f2937;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Grid Layout */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Car Cards */
.car-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.info {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #111827;
}
.info p {
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.price {
  font-weight: bold;
  font-size: 1.05rem;
  color: #111;
}

/* Footer (optional) */
 footer {
    background-color: #222;
    color: #ddd;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.95rem;
  }
  footer p {
    margin: 0.5rem 0;
  }
.video-gallery {
  padding: 3rem 2rem;
  background-color: #fff;
  text-align: center;
}

.video-gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1f2937;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.video-grid video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.photo-gallery {
  padding: 3rem 2rem;
  background-color: #f9fafb;
  text-align: center;
}

.photo-gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1f2937;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.photo-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.03);
}

