/*
Theme Name: Glen Ronald Theme
Theme URI: https://example.com/glen-ronald-theme
Author: BLACKBOXAI
Author URI: https://example.com
Description: A custom WordPress portfolio theme inspired by Dallas LaRose styling.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: glen-ronald-theme
*/

:root{
  --bg:#f8f6f2;
  --text:#111111;
  --muted:#6d6a66;
  --line:#dfdbd4;
  --accent:#d6ff57;
  --card:#ffffff;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: "Courier New", Courier, monospace;
  color:var(--text);
  background:var(--bg);
  line-height:1.4;
}

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(248,246,242,.95);
  backdrop-filter: blur(6px);
  border-bottom:1px solid var(--line);
}

.nav{
  max-width:1200px;
  margin:0 auto;
  padding:18px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  font-weight:900;
  letter-spacing:.06em;
  font-size:30px;
  text-transform:uppercase;
}

.menu{
  display:flex;
  gap:24px;
  font-size:14px;
  text-transform:uppercase;
}

.menu a{
  color:var(--text);
  text-decoration:none;
  border-bottom:1px solid transparent;
  padding-bottom:2px;
}
.menu a:hover{border-bottom-color:var(--text)}

.hero{
  max-width:1200px;
  margin:28px auto 10px;
  padding:0 24px;
  display:grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap:24px;
  align-items:stretch;
}

.artist-card{
  background:var(--card);
  border:1px solid var(--line);
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:420px;
}

.artist-photo{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border:1px solid var(--line);
  margin-bottom:18px;
}

h1{
  margin:0 0 8px;
  font-size:42px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.location{color:var(--muted); margin:0 0 12px; font-size:16px;}
.bio{margin:0 0 20px; font-size:16px;}

.cta{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  background:var(--accent);
  color:#000;
  text-decoration:none;
  font-weight:700;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.04em;
  border:1px solid #000;
}

.hero-image{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  border:1px solid var(--line);
  filter:contrast(1.02) saturate(.95);
}

.controls{
  max-width:1200px;
  margin:18px auto 6px;
  padding:0 24px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:space-between;
}

.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  border:1px solid #000;
  background:transparent;
  padding:7px 14px;
  border-radius:999px;
  font-family:inherit;
  text-transform:uppercase;
  font-size:12px;
}

.pill.active{background:#000;color:#fff}

.search{
  border:none;
  border-bottom:1px solid #000;
  background:transparent;
  font-family:inherit;
  padding:8px 2px;
  width:220px;
  font-size:14px;
}

.gallery{
  max-width:1200px;
  margin:14px auto 48px;
  padding:0 24px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
}

.card .meta{
  padding:12px;
  border-top:1px solid var(--line);
}

.title{
  margin:0;
  font-size:16px;
  text-transform:uppercase;
}

.sub{
  margin:4px 0 0;
  color:var(--muted);
  font-size:13px;
}

@media (max-width:960px){
  .hero{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .brand{font-size:24px}
}

@media (max-width:600px){
  .menu{display:none}
  .gallery{grid-template-columns:1fr}
  h1{font-size:32px}
  .search{width:100%}
  .controls{align-items:stretch}
}
