/* OhioBoudoir.com – Luxury Directory Theme
   Drop-in replacement for /assets/styles.css
*/

:root{
  --bg-0:#07070a;
  --bg-1:#0b0c10;
  --panel:#0f1118;
  --panel-2:#121525;
  --border:rgba(255,255,255,.08);
  --border-2:rgba(255,255,255,.12);

  --text:#f4f4f6;
  --muted:rgba(244,244,246,.72);
  --muted-2:rgba(244,244,246,.55);

  --accent:#d6c6ff;   /* soft lilac */
  --accent-2:#f2d7b6; /* champagne */
  --accent-3:#88e1cf; /* mint */

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --radius-sm:14px;

  --max:1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(214,198,255,.12), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(242,215,182,.10), transparent 55%),
    radial-gradient(900px 600px at 70% 110%, rgba(136,225,207,.08), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 55%, #07070a);
}

a{ color:inherit; }
.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,7,10,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0 10px;
  gap:14px;
}
.brand{
  text-decoration:none;
  font-weight:750;
  letter-spacing:.3px;
  font-size:16px;
}
.brand:hover{ opacity:.95; }

.nav{
  display:flex;
  gap:14px;
  align-items:center;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.04);
  border-color:var(--border);
}

.nav-cities{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 0 12px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  text-decoration:none;
  font-size:13px;
  color:var(--muted);
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  transition: transform .12s ease, border-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.pill:hover{
  color:var(--text);
  border-color:var(--border-2);
  transform: translateY(-1px);
}

/* Main */
.main{
  padding:30px 20px 70px;
}

h1{
  font-size: clamp(28px, 4vw, 40px);
  line-height:1.08;
  margin:10px 0 10px;
  letter-spacing:-.5px;
}
h2{
  font-size: clamp(18px, 2.6vw, 24px);
  margin:26px 0 12px;
  letter-spacing:-.2px;
}
.lead{
  color:var(--muted);
  line-height:1.6;
  max-width:72ch;
  font-size:15px;
}
.small{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.page-hero, .home-hero{
  padding:10px 0 6px;
}

/* Layout */
.layout{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap:18px;
  align-items:start;
}
@media (max-width: 980px){
  .layout{ grid-template-columns:1fr; }
}

.grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 980px){
  .grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .grid{ grid-template-columns:1fr; }
}


/* Cards */
.card{
  position:relative;
  border-radius:var(--radius);
  padding:16px;
  border:1px solid var(--border);
  background:
    radial-gradient(800px 200px at 10% 0%, rgba(214,198,255,.10), transparent 35%),
    radial-gradient(700px 220px at 90% 0%, rgba(242,215,182,.08), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  box-shadow: var(--shadow-soft);
  transition: transform .14s ease, border-color .16s ease, box-shadow .16s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(214,198,255,.22);
  box-shadow: var(--shadow);
}

.card-title{
  margin:0 0 6px;
  font-size:16px;
  letter-spacing:-.2px;
}
.card-title a{
  text-decoration:none;
}
.card-title a:hover{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(214,198,255,.55);
}

.card-meta{
  color:var(--muted-2);
  font-size:12.5px;
  line-height:1.4;
}

/* Rating row */
.rating-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin:12px 0 8px;
}
.rating{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(214,198,255,.22);
  background: rgba(214,198,255,.08);
  font-weight:700;
  letter-spacing:.2px;
  min-width:54px;
}
.reviews{
  color:var(--muted);
  font-size:12.5px;
}

/* Buttons */
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  font-size:13px;
  font-weight:650;
  border:1px solid rgba(214,198,255,.20);
  background:
    linear-gradient(180deg, rgba(214,198,255,.22), rgba(214,198,255,.10));
  color:var(--text);
  transition: transform .12s ease, filter .12s ease, border-color .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  border-color: rgba(214,198,255,.35);
}
.btn:active{ transform: translateY(0px); }

.btn-ghost{
  background: rgba(255,255,255,.02);
  border:1px solid var(--border);
  color:var(--muted);
}
.btn-ghost:hover{
  color:var(--text);
  border-color: rgba(255,255,255,.16);
}

/* Search bar */
.toolbar{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin:10px 0 16px;
}
input[type="search"]{
  width:min(560px, 100%);
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
  transition: border-color .14s ease, box-shadow .14s ease;
}
input[type="search"]::placeholder{ color: rgba(244,244,246,.45); }
input[type="search"]:focus{
  border-color: rgba(214,198,255,.30);
  box-shadow: 0 0 0 4px rgba(214,198,255,.10);
}

/* Sidebar */
.sidebar-card{
  border-radius:var(--radius);
  padding:16px;
  border:1px solid var(--border);
  background:
    radial-gradient(700px 220px at 10% 0%, rgba(242,215,182,.10), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  box-shadow: var(--shadow-soft);
  margin-bottom:14px;
}
.toplist{
  margin:0;
  padding-left:18px;
}
.toplist li{
  margin:10px 0;
}
.toplist a{
  text-decoration:none;
}
.toplist a:hover{
  text-decoration: underline;
  text-decoration-color: rgba(242,215,182,.60);
  text-underline-offset: 3px;
}

/* Callouts */
.callout{
  border-radius:var(--radius);
  padding:16px;
  border:1px solid rgba(242,215,182,.22);
  background:
    radial-gradient(900px 320px at 25% 0%, rgba(242,215,182,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  box-shadow: var(--shadow-soft);
}
.callout-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  color:var(--muted);
}
.footer-inner{ padding:0 20px; }
.footer-links{
  display:flex;
  gap:14px;
  margin-bottom:10px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--muted);
  text-decoration:none;
}
.footer-links a:hover{ color:var(--text); }

.disclaimer{
  margin:0;
  color:var(--muted-2);
  font-size:12.5px;
  line-height:1.6;
}

/* Optional: nicer city cards if you add them back later */
.city-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:16px;
}
@media (max-width: 980px){
  .city-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .city-grid{ grid-template-columns:1fr; }
}
.city-card{
  display:block;
  text-decoration:none;
  border-radius:var(--radius);
  padding:16px;
  border:1px solid var(--border);
  background:
    radial-gradient(800px 240px at 15% 0%, rgba(136,225,207,.10), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  box-shadow: var(--shadow-soft);
  transition: transform .14s ease, border-color .16s ease;
}
.city-card:hover{
  transform: translateY(-2px);
  border-color: rgba(136,225,207,.22);
}
.city-name{ font-weight:750; font-size:16px; }
.city-sub{ color:var(--muted); margin-top:6px; font-size:13px; }

.nav-dd { position: relative; }
.nav-dd summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  user-select: none;
}
.nav-dd summary::-webkit-details-marker { display:none; }
.nav-dd[open] summary,
.nav-dd summary:hover{
  color: var(--text);
  background: rgba(255,255,255,.04);
  border-color: var(--border);
}

.dd{
  position:absolute;
  top:42px;
  left:0;
  min-width: 220px;
  background: rgba(10,10,14,.92);
  backdrop-filter: blur(14px);
  border:1px solid var(--border);
  border-radius: 14px;
  padding:10px;
  box-shadow: var(--shadow-soft);
  z-index:60;
}
.dd a{
  display:block;
  padding:10px 10px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--muted);
  font-size: 13px;
}
.dd a:hover{
  background: rgba(255,255,255,.05);
  color: var(--text);
}

.dd-grid{
  width:min(520px, calc(100vw - 60px));
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:6px;
}
@media (max-width: 640px){
  .dd{ position: fixed; left: 20px; right: 20px; }
  .dd-grid{ grid-template-columns: 1fr; }
}


/* Mobile menu button */
.menu-btn{
  display:none;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:650;
  font-size:13px;
}
.menu-btn:hover{ border-color: var(--border-2); }

/* Mobile panel */
.mobile-menu{
  display:none;
  border-top:1px solid var(--border);
  padding:12px 0 14px;
}
.mobile-menu a{
  display:block;
  padding:12px 0;
  text-decoration:none;
  color: var(--text);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.mobile-menu a:last-child{ border-bottom:0; }

.mm-section{ padding:10px 0; }
.mm-title{
  color: var(--muted);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin:6px 0 8px;
}
.mm-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.mm-grid a{
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  background: rgba(255,255,255,.02);
  text-align:center;
}
.mm-grid a:hover{ border-color: var(--border-2); }
.mm-all{
  margin-top:10px;
  color: var(--muted);
  font-size:13px;
  border-bottom:0 !important;
}

/* Switch behavior on small screens */
@media (max-width: 860px){
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; align-items:center; justify-content:center; }
  .mobile-menu{ display:block; }
  .nav-cities{ display:none; } /* optional: hide the city pills since menu covers it */
}
/* Mobile menu overlay (drawer) */
.mm-backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index:80;
}
.mm-sheet{
  position:fixed;
  top:10px;
  left:10px;
  right:10px;
  max-height: calc(100vh - 20px);
  overflow:auto;
  z-index:90;
  border-radius: 18px;
  border:1px solid var(--border);
  background: rgba(10,10,14,.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding:14px;
}

.mm-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:8px;
}
.mm-brand{ font-weight:800; letter-spacing:.2px; }
.mm-close{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:650;
  font-size:13px;
}

.mm-link{
  display:block;
  padding:12px 8px;
  border-radius:14px;
  text-decoration:none;
  color: var(--text);
}
.mm-link:hover{ background: rgba(255,255,255,.05); }

.mm-acc{
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  margin:10px 0;
  background: rgba(255,255,255,.02);
}
.mm-acc summary{
  cursor:pointer;
  padding:12px 12px;
  list-style:none;
  user-select:none;
  font-weight:700;
  color: var(--text);
}
.mm-acc summary::-webkit-details-marker{ display:none; }
.mm-acc-body{ padding:0 8px 10px; }

.mm-city-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
  padding:8px 4px 10px;
}
.mm-city{
  text-decoration:none;
  text-align:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  color: var(--text);
}
.mm-city:hover{ border-color: var(--border-2); }

.mm-hint{
  color: var(--muted);
  font-size:12.5px;
  padding:0 8px 6px;
}

/* Mobile behavior */
@media (max-width: 860px){
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; }
  .nav-cities{ display:none; } /* keeps header clean on mobile */
}
@media (max-width: 640px){
  .card{ padding:14px; }
  h1{ font-size:28px; }
  .lead{ font-size:14px; }
}

@media (max-width: 980px){
  .sidebar{ display:none; }
}


