:root {
  --bg: #0f172a;
  --card: #1e293b;
  --accent: #38bdf8;
  --text: #f8fafc;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

header { padding: 2rem 1rem; background: var(--card); }
.cta-section { display: flex; gap: 10px; justify-content: center; margin: 1.5rem; }

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background: #334155;
  border: none;
  cursor: pointer;
}
.btn-call { background: #16a34a; }
.btn-email { background: #2563eb; }
.btn-submit { background: #ea580c; width: 100%; }

.card img { width: 100%; border-radius: 8px; }

.booking-section { max-width: 500px; margin: 2rem auto; padding: 1rem; }
form { display: flex; flex-direction: column; gap: 10px; }
input, textarea { padding: 12px; border-radius: 6px; border: 1px solid #475569; background: #1e293b; color: white; }

/* Ensure all project images share the same strict visual dimensions */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 1rem;
  align-items: stretch; /* Keeps all cards equal height */
}

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Ensure full image visibility using letterboxing/containment */
.balanced-img {
  width: 100%;
  height: 380px;              /* Sets a unified container height */
  object-fit: contain;        /* SHOWS 100% OF THE IMAGE (No cropping) */
  background-color: #0f172a;  /* Seamless dark background behind fitted images */
  border-radius: 8px;
}

