/* CoinAlbums.com — Clean, premium, museum-quality aesthetic */

:root {
  --gold: #c5a44e;
  --gold-light: #dfc882;
  --dark: #1a1a1a;
  --text: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg: #fff;
  --bg-warm: #fafaf8;
  --bg-dark: #111;
  --border: #e8e8e8;
  --max-w: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--dark); }

img { max-width: 100%; height: auto; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── Header ── */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
}
.site-header .container {
  display: flex; align-items: center; gap: 2rem;
}
.logo-link { display: flex; align-items: center; gap: 0.6rem; }
.logo-link img { height: 56px; width: 56px; }
.logo-text {
  font-size: 1.1rem; font-weight: 400; letter-spacing: 0.15em;
  color: var(--dark); text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 1.8rem; margin-left: auto; }
nav a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text); padding: 0.3rem 0;
  border-bottom: 2px solid transparent; transition: all 0.2s;
}
nav a:hover, nav a.active { color: var(--dark); border-bottom-color: var(--gold); }

/* Albums dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: -1rem;
  background: white; border: 1px solid var(--border);
  border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  min-width: 200px; padding: 0.5rem 0; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.4rem 1.2rem; font-size: 0.82rem;
  text-transform: none; letter-spacing: 0; color: var(--text);
  border-bottom: none;
}
.dropdown-menu a:hover { background: var(--bg-warm); color: var(--gold); }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  height: 420px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.4);
}
.hero-content {
  position: relative; z-index: 1; color: white;
  text-align: center; width: 100%;
}
.hero h1 {
  font-size: 2.2rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.6rem;
}
.hero p {
  font-size: 1rem; opacity: 0.8; max-width: 600px;
  margin: 0 auto 1.5rem; line-height: 1.6;
}
.hero .btn {
  display: inline-block; padding: 0.7rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.6); color: white;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.3s;
}
.hero .btn:hover { background: white; color: var(--dark); }

/* ── Section headings ── */
.section-title {
  text-align: center; font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  margin: 3rem 0 1.5rem;
}

/* ── Product grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.product-card {
  text-align: center; transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-3px); }
.product-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 2px; margin-bottom: 1rem;
  background: var(--bg-warm);
}
.product-card h3 {
  font-size: 0.95rem; font-weight: 400; margin-bottom: 0.3rem;
  color: var(--dark);
}
.product-card .price {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem; color: var(--text-light);
}

/* ── About section ── */
.about-section {
  background: var(--bg-warm);
  padding: 3.5rem 0;
}
.about-section h2 {
  font-size: 1.6rem; font-weight: 400; text-align: center;
  margin-bottom: 0.5rem; color: var(--dark);
}
.about-section .subtitle {
  text-align: center; font-style: italic; color: var(--text-light);
  margin-bottom: 2rem; font-size: 1.05rem;
}
.about-content {
  max-width: 720px; margin: 0 auto;
  font-size: 0.95rem; color: var(--text-light);
}
.about-content h3 {
  font-size: 1.1rem; font-weight: 400; color: var(--dark);
  margin: 1.8rem 0 0.6rem;
}
.about-content p { margin-bottom: 1rem; }

/* ── Features strip ── */
.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; padding: 3rem 0; text-align: center;
}
.feature-item { padding: 0 1rem; }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.feature-item h4 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 0.4rem;
}
.feature-item p { font-size: 0.85rem; color: var(--text-light); }

/* ── Special requests ── */
.special-section { padding: 3rem 0; }
.special-section h2 {
  font-size: 1.4rem; font-weight: 400; text-align: center;
  margin-bottom: 1.5rem;
}
.special-content {
  max-width: 680px; margin: 0 auto;
  font-size: 0.92rem; color: var(--text-light);
}
.special-content p { margin-bottom: 1rem; }
.special-content a { border-bottom: 1px solid var(--gold); }

/* ── Footer ── */
.site-footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.5);
  padding: 2.5rem 0; text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem; letter-spacing: 0.04em;
}
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: white; }
.footer-links { margin-bottom: 1rem; }
.footer-links a { margin: 0 0.8rem; }
.footer-social { margin: 1rem 0; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); margin: 0 0.3rem;
  font-size: 0.85rem; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.payment-icons { margin-top: 1rem; opacity: 0.5; font-size: 1.2rem; letter-spacing: 0.5rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { height: 320px; }
  .hero h1 { font-size: 1.5rem; }
  .site-header .container { flex-wrap: wrap; gap: 0.8rem; }
  nav { gap: 1rem; font-size: 0.78rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.2rem; }
}
