/* =====================================
   RESET & BASIS
===================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

html, body {
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top, #0f172a 0%, #020617 60%);
  color: #e5e7eb;
}

/* =====================================
   UTIL
===================================== */
.hidden {
  display: none !important;
}

/* =====================================
   STARTSCHERM
===================================== */
#mainContent {
  min-height: 100vh;
  padding-bottom: 120px;
}

/* =====================================
   HERO
===================================== */
.hero {
  text-align: center;
  margin: 70px 20px 50px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 10px;
}

/* =====================================
   TEGEL GRID
===================================== */
.tiles-grid {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =====================================
   TEGEL
===================================== */
.tile {
  position: relative;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(rgba(2,6,23,0.75), rgba(2,6,23,0.9)),
    var(--bg) center / cover no-repeat;
  border: 1px solid #1e293b;
  transition: transform 0.3s ease;
}

.tile:hover {
  transform: translateY(-6px);
}

/* =====================================
   TEGEL OVERLAY
===================================== */
.tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,197,94,0.9);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tile:hover .tile-overlay {
  opacity: 1;
}

/* =====================================
   TEGEL CONTENT
===================================== */
.tile-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: color 0.35s ease;
}

.tile-content i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #22c55e;
}

.tile-content span {
  font-size: 1.2rem;
  font-weight: 600;
}

.tile:hover .tile-content i,
.tile:hover .tile-content span {
  color: #020617;
}

/* =====================================
   FOOTER
===================================== */
.footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgb(0, 0, 0);
  border-top: 1px solid rgb(0, 0, 0);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  z-index: 1000;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 50px;
}

.footer-center {
  text-align: center;
}

.footer-home-btn {
  padding: 10px 22px;
  background: #22c55e;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-home-btn:hover {
  background: #3bdf77;
  transform: translateY(-1px);
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.google-logo {
  height: 18px;
}

.review-score {
  font-weight: 700;
}

.review-stars {
  color: #facc15;
  letter-spacing: 1px;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 900px) {

.tiles-grid {
  grid-template-columns: repeat(2, 1fr); /* 2 naast elkaar */
  gap: 16px;
  margin-bottom: 120px;
}

.hero {
  margin: 40px 16px 30px;
}

.hero h1 {
  font-size: 2rem;
}

.hero p {
  font-size: 1rem;
}

.tile {
  height: 130px;
}

.tile-content span {
  font-size: 1rem;
}

}
html, body {
  height: 100vh;
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .tiles-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .tile {
    height: 160px;
  }
}
@media (max-width: 480px) {

.tiles-grid {
  gap: 14px;
}

.tile {
  height: 120px;
}

.tile-content i {
  font-size: 1.6rem;
}

.tile-content span {
  font-size: 0.95rem;
}

}