:root {
  --bg: #f5f5f5;
  --fg: #111111;
  --accent: #999999;
}

/* Global reset-ish */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--fg);
  line-height: 1.6;

  /* Soft Miami background on all pages */
  background-image: linear-gradient(
      rgba(245, 245, 245, 0.8),
      rgba(245, 245, 245, 0.8)
    ),
    url("../images/miami-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Layout */
.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 48px;
  background-color: rgba(245, 245, 245, 0.96); /* extra readability over bg */
}

/* Header */
header {
  margin-bottom: 32px;
}

header h1 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

header p {
  margin: 6px 0 0;
  color: var(--accent);
  font-size: 0.95rem;
}

/* Section headings */
h2 {
  margin: 32px 0 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

/* Albums on homepage */
.albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.album {
  display: flex;
  flex-direction: column;
  padding: 16px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.album:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.18);
}

.album-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.album-meta {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--accent);
}

/* About + contact text blocks */
.about,
.contact {
  max-width: 640px;
  font-size: 0.95rem;
}

/* Contact links */
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-links a {
  text-decoration: none;
  color: var(--fg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 2px;
  font-size: 0.9rem;
}

.contact-links a:hover {
  border-bottom-color: var(--fg);
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--accent);
}

/* Album gallery pages (ft-lauderdale.html etc.) */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  opacity: 0.98;
}

/* Simple lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  cursor: zoom-out;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .wrapper {
    padding: 24px 16px 32px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}