/* ==============================
   General
============================== */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #f4f6f9;
  color: #333;
}

/* ==============================
   Navbar
============================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #004080;
}

.navbar img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ffcc00;
}

/* ==============================
   Hero Section
============================== */
.header {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('https://images.unsplash.com/photo-1505691723518-36a5ac3be353') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.header h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.header p {
  font-size: 20px;
  margin-bottom: 25px;
}

.header input {
  padding: 12px 15px;
  width: 300px;
  max-width: 90%;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

/* ==============================
   Filters
============================== */
.filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.filters select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  cursor: pointer;
}

/* ==============================
   Rental Cards
============================== */
.rent-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 30px 40px;
}

.rent-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.rent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.rent-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.rent-info {
  padding: 15px 20px;
}

.rent-info h3 {
  margin: 0 0 10px;
  color: #004080;
}

.rent-info p {
  margin: 6px 0;
  color: #555;
}

.price {
  color: #e91e63;
  font-weight: bold;
  font-size: 18px;
}

/* ==============================
   Footer
============================== */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 25px 20px;
}

.footer .social {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer .social a {
  color: #00aaff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.footer .social a:hover { transform: scale(1.2); }

.footer .social a.facebook:hover { color: #1877f2; }
.footer .social a.twitter:hover { color: #1da1f2; }
.footer .social a.instagram:hover { color: #fd1d1d; }
.footer .social a.linkedin:hover { color: #00709c; }
.footer .social a.github:hover { color: #d1d1d1; }
