/* ===============================
   HOME MAIN WRAPPER
================================ */
.home-main {
  flex-grow: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ===============================
   SECTION
================================ */
.home-section {
  position: relative;
}

.home-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.8rem;
  text-align: center;
  text-shadow: 0 0 18px rgba(0,0,0,0.75);
}

/* ===============================
   GRID LAYOUT
================================ */
.home-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  z-index: 10;
  position: relative;
}

/* ===============================
   CARD STYLE
================================ */
.home-card {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 1rem;
  padding-bottom: 1.2rem;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 6px 18px rgba(0,0,0,0.3);

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(59,130,246,0.45);
}

/* ===============================
   CARD IMAGE
================================ */
.home-image {
  height: 190px;
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ===============================
   CARD TEXT
================================ */
.home-card-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.9rem;

  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.home-card-desc {
  color: white;
  text-align: center;
  margin: 0.6rem 1rem 0.2rem;
  font-size: 0.95rem;

  text-shadow: 0 0 10px rgba(0,0,0,0.55);
}

/* ===============================
   BUTTON
================================ */
.home-button {
  display: block;
  width: 155px;
  margin: 1rem auto 0;
  text-align: center;

  padding: 0.6rem 1rem;
  border-radius: 0.6rem;

  background: rgba(59,130,246,0.25);
  border: 1px solid rgba(147,197,253,0.55);
  color: white;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  font-weight: 600;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;

  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.home-button:hover {
  background: rgba(59,130,246,0.35);
  box-shadow: 0 0 18px rgba(59,130,246,0.55);
  transform: translateY(-3px);
}

.home-no-spots {
  color: white;
  font-size: 1.3rem;
  text-shadow: 0 0 6px #000;
  text-align: center;
  padding: 2rem 0;
  grid-column: 1 / -1; 
}

