/* ============================================
   WEDDING TOOLS THEME
   Palette: White / Soft Gold / Light Pink
   ============================================ */
:root{
  --gold:#d4a437;
  --gold-soft:#e7c873;
  --pink:#f7d9e3;
  --pink-soft:#fdf2f6;
  --ink:#2b2b3a;
  --muted:#7a7a8c;
  --line:#efe7ef;
  --radius:18px;
  --shadow:0 10px 30px rgba(180,140,60,.08);
}

.tools-wrap{
  padding: 22px 22px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Page hero */
.tool-hero{
  background: linear-gradient(135deg,#fff 0%, var(--pink-soft) 55%, #fff 100%);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align:center;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.tool-hero:before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 12% 20%, rgba(212,164,55,.10), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(247,217,227,.5), transparent 45%);
  pointer-events:none;
}
.tool-hero .eyebrow{
  display:inline-block;
  font-size:12px; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--gold); font-weight:700; margin-bottom:10px;
}
.tool-hero h1{
  font-size: clamp(24px, 4vw, 36px);
  color:var(--ink); margin:0 0 10px; font-weight:800; line-height:1.2;
}
.tool-hero p{
  color:var(--muted); max-width:640px; margin:0 auto; font-size:15px; line-height:1.7;
}

/* Breadcrumb */
.crumb{ font-size:13px; color:var(--muted); margin:0 0 16px; }
.crumb a{ color:var(--gold); text-decoration:none; }
.crumb a:hover{ text-decoration:underline; }

/* Tools grid (hub) */
.tools-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  gap:20px;
  margin-top:26px;
}
.tool-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:26px 22px;
  text-decoration:none;
  color:inherit;
  display:flex; flex-direction:column; gap:10px;
  transition:.25s;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}
.tool-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:var(--gold-soft); }
.tool-card .ic{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;color:#fff;
  background:linear-gradient(135deg,var(--gold),var(--gold-soft));
}
.tool-card h3{ margin:0; font-size:17px; font-weight:700; color:var(--ink); }
.tool-card p{ margin:0; font-size:13.5px; color:var(--muted); line-height:1.6; }
.tool-card .go{ margin-top:auto; font-size:13px; font-weight:700; color:var(--gold); }

/* Tool form card */
.tool-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  margin-top:24px;
}
.tool-panel h2{ font-size:19px; margin:0 0 18px; color:var(--ink); }

.field{ margin-bottom:16px; }
.field label{ display:block; font-size:13px; font-weight:600; color:var(--ink); margin-bottom:6px; }
.field input, .field select{
  width:100%; padding:13px 14px; border:1px solid var(--line);
  border-radius:12px; font-size:15px; background:#fffdfb; color:var(--ink);
  transition:.2s;
}
.field input:focus, .field select:focus{
  outline:none; border-color:var(--gold-soft); box-shadow:0 0 0 3px rgba(212,164,55,.12);
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }

.btn-gold{
  display:inline-flex; align-items:center; gap:8px; justify-content:center;
  background:linear-gradient(135deg,var(--gold),var(--gold-soft));
  color:#fff; border:none; padding:14px 26px; border-radius:30px;
  font-size:15px; font-weight:700; cursor:pointer; transition:.25s; width:100%;
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 8px 20px rgba(212,164,55,.3); }
.btn-ghost{
  display:inline-flex; align-items:center; gap:8px; justify-content:center;
  background:#fff; color:var(--gold); border:1.5px solid var(--gold-soft);
  padding:12px 22px; border-radius:30px; font-size:14px; font-weight:700;
  cursor:pointer; text-decoration:none; transition:.2s;
}
.btn-ghost:hover{ background:var(--pink-soft); }

/* Results */
.result-box{ margin-top:24px; }
.result-title{ font-size:16px; font-weight:700; color:var(--ink); margin:0 0 14px; }

.hashtag-list{ display:flex; flex-wrap:wrap; gap:10px; }
.hashtag-chip{
  background:var(--pink-soft); border:1px solid var(--pink);
  color:var(--ink); padding:9px 14px; border-radius:24px;
  font-size:14px; cursor:pointer; transition:.2s; user-select:all;
}
.hashtag-chip:hover{ background:var(--pink); }

.budget-table{ width:100%; border-collapse:collapse; margin-top:6px; }
.budget-table th, .budget-table td{ text-align:left; padding:13px 14px; border-bottom:1px solid var(--line); font-size:14px; }
.budget-table th{ background:var(--pink-soft); color:var(--ink); font-weight:700; }
.budget-table td:last-child, .budget-table th:last-child{ text-align:right; font-weight:600; }
.budget-table tr.total td{ font-weight:800; color:var(--gold); border-top:2px solid var(--gold-soft); font-size:15px; }
.bar{ height:8px; border-radius:6px; background:linear-gradient(90deg,var(--gold),var(--gold-soft)); }

.checklist{ list-style:none; padding:0; margin:0; }
.check-group{ margin-bottom:22px; }
.check-group h4{
  font-size:14px; text-transform:uppercase; letter-spacing:.6px;
  color:var(--gold); margin:0 0 10px; border-bottom:1px solid var(--line); padding-bottom:6px;
}
.check-item{
  display:flex; align-items:center; gap:10px; padding:8px 0; font-size:14.5px; color:var(--ink);
}
.check-item input{ width:18px; height:18px; accent-color:var(--gold); }

.song-result{ margin-top:6px; }
.song-row{
  display:flex; align-items:center; gap:14px; padding:12px; border:1px solid var(--line);
  border-radius:14px; margin-bottom:10px; background:#fffdfb;
}
.song-row img{ width:70px; height:48px; object-fit:cover; border-radius:8px; }
.song-row .t{ flex:1; font-size:14.5px; font-weight:600; color:var(--ink); }
.song-row .play{
  background:linear-gradient(135deg,var(--gold),var(--gold-soft)); color:#fff; border:none;
  width:40px;height:40px;border-radius:50%; cursor:pointer; font-size:14px;
}
.empty{ text-align:center; color:var(--muted); padding:30px; font-size:14px; }

/* Related / internal linking block */
.related-block{ margin-top:40px; }
.related-block h3{ font-size:18px; color:var(--ink); margin:0 0 16px; }
.related-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:14px; }
.related-card{
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:16px;
  text-decoration:none; color:var(--ink); font-size:14px; font-weight:600; transition:.2s;
  display:flex; align-items:center; gap:10px;
}
.related-card:hover{ border-color:var(--gold-soft); background:var(--pink-soft); }
.related-card i{ color:var(--gold); }

/* AdSense placeholder */
.ad-slot{
  margin:26px 0; min-height:90px; border:1px dashed #e3d6c2; border-radius:12px;
  display:flex; align-items:center; justify-content:center; color:#c7b48a;
  font-size:12px; letter-spacing:1px; text-transform:uppercase; background:#fffdf7;
}

/* Newsletter */
.newsletter{
  margin-top:40px; background:linear-gradient(135deg,var(--pink-soft),#fff);
  border:1px solid var(--pink); border-radius:var(--radius); padding:30px; text-align:center;
}
.newsletter h3{ font-size:20px; color:var(--ink); margin:0 0 8px; }
.newsletter p{ color:var(--muted); margin:0 0 18px; font-size:14px; }
.newsletter form{ display:flex; gap:10px; max-width:460px; margin:0 auto; }
.newsletter input{ flex:1; padding:13px 16px; border:1px solid var(--line); border-radius:30px; font-size:14px; }
.newsletter button{ white-space:nowrap; width:auto; }
.note{ font-size:13px; padding:10px 14px; border-radius:10px; margin-top:12px; }
.note.ok{ background:#e9f9ef; color:#1c7a44; }
.note.err{ background:#fdeaea; color:#c0392b; }

@media(max-width:560px){
  .field-row{ grid-template-columns:1fr; }
  .newsletter form{ flex-direction:column; }
  .newsletter button{ width:100%; }
}
