/*
Theme Name: Kiana Beauty Salon
Theme URI: https://example.com/kiana-beauty-salon
Author: ChatGPT
Author URI: https://openai.com
Description: A simple, elegant WordPress theme for Kiana Beauty Salon with logo, services, contact details, and a built-in booking request form.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kiana-beauty-salon
Tags: beauty, salon, booking, responsive, small-business
*/

:root {
  --bg: #070707;
  --surface: #111111;
  --surface-2: #181818;
  --ink: #ffffff;
  --muted: #d9d9d9;
  --gold: #d9b44a;
  --gold-light: #ffe48a;
  --gold-dark: #9b7420;
  --border: rgba(217, 180, 74, 0.28);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 22px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  width: 210px;
  max-height: 82px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  text-decoration: none;
  font-weight: 750;
  color: var(--muted);
}
.nav a:hover { color: var(--gold-light); }
.btn,
.wp-block-button__link,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(217, 180, 74, 0.22);
}
.btn:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.btn.secondary {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border);
  box-shadow: none;
}
.text-link {
  color: var(--gold-light);
  font-weight: 850;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.hero {
  padding: 82px 0 64px;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 180, 74, 0.18), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(217, 180, 74, 0.12), transparent 32%),
    linear-gradient(135deg, #050505 0%, #111111 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}
.kicker {
  display: inline-block;
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 14px; }
h1 { font-size: clamp(2.6rem, 5.6vw, 5.2rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 3.2vw, 3.35rem); letter-spacing: -0.04em; }
h3 { font-size: 1.28rem; }
p { margin: 0 0 18px; color: var(--muted); }
.hero-copy p { font-size: 1.14rem; max-width: 660px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.quick-contact {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}
.quick-contact a { color: var(--gold-light); text-decoration: none; }
.quick-contact a:hover { text-decoration: underline; }
.hero-card {
  background: linear-gradient(180deg, rgba(24,24,24,0.92), rgba(10,10,10,0.96));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before,
.flyer-wrap::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(217,180,74,0.22), transparent 38%);
  pointer-events: none;
}
.hero-logo {
  position: relative;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(217,180,74,0.18);
}
.section { padding: 76px 0; }
.section-title { max-width: 760px; margin-bottom: 34px; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: linear-gradient(180deg, rgba(24,24,24,0.98), rgba(13,13,13,0.98));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.26);
}
.service-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
}
.band {
  background:
    linear-gradient(rgba(5,5,5,0.82), rgba(5,5,5,0.82)),
    radial-gradient(circle at 12% 20%, rgba(217, 180, 74, 0.2), transparent 28%),
    #0c0c0c;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: white;
  padding: 58px 0;
}
.band p { color: rgba(255,255,255,0.78); }
.band-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.contact-grid,
.booking-grid,
.flyer-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}
.flyer-grid { align-items: center; }
.flyer-section {
  background: linear-gradient(180deg, #090909, #111111);
  border-top: 1px solid rgba(217,180,74,0.12);
  border-bottom: 1px solid rgba(217,180,74,0.12);
}
.flyer-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #070707;
  padding: 10px;
}
.flyer-wrap img {
  position: relative;
  width: 100%;
  border-radius: 22px;
}
.info-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(217, 180, 74, 0.18);
  color: var(--muted);
}
.info-list li:last-child { border-bottom: 0; }
.info-list strong {
  display: block;
  color: var(--ink);
}
.info-list a { color: var(--gold-light); text-decoration: none; overflow-wrap: anywhere; }
.info-list a:hover { text-decoration: underline; }
.check-list { display: grid; gap: 10px; margin: 18px 0; }
.check-list li {
  padding-left: 30px;
  position: relative;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-weight: 900;
}
.booking-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 180, 74, 0.12), transparent 32%),
    #070707;
}
.booking-form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label { font-weight: 800; color: var(--ink); }
input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid rgba(217, 180, 74, 0.25);
  border-radius: 16px;
  background: #080808;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
}
input::placeholder,
textarea::placeholder { color: #8f8f8f; }
textarea { min-height: 125px; resize: vertical; }
.notice {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  font-weight: 800;
}
.notice.success { background: rgba(46, 160, 67, 0.16); color: #9ee6aa; border: 1px solid rgba(46,160,67,0.45); }
.notice.error { background: rgba(218, 54, 51, 0.14); color: #ffb4b4; border: 1px solid rgba(218,54,51,0.45); }
.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: #050505;
}
.footer-inner {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-inner p { margin: 0; }
.footer-inner a { color: var(--gold-light); text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }
.entry-content {
  max-width: 900px;
  margin: 60px auto;
  background: var(--surface);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-grid,
  .contact-grid,
  .booking-grid,
  .flyer-grid,
  .band-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .header-inner { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; gap: 12px; }
  .logo img { width: 180px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .container { width: min(100% - 28px, 1120px); }
  .nav a:not(.btn) { font-size: 0.92rem; }
  h1 { font-size: clamp(2.3rem, 12vw, 3.4rem); }
}
