/* ========================================
   UrbanCuts — Brand CSS  (Bootstrap 5 complement)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* ---- Brand tokens ---- */
:root {
  --uc-black:   #0e0e0e;
  --uc-dark:    #141414;
  --uc-card:    #1c1c1c;
  --uc-border:  #2a2a2a;
  --uc-gold:    #c9a84c;
  --uc-gold-lt: #e0c070;
  --uc-gold-dk: #7a6228;
  --uc-white:   #f5f0e8;
  --uc-muted:   #888880;
  --uc-font-h:  'Playfair Display', Georgia, serif;
  --uc-font-b:  'Lato', 'Helvetica Neue', sans-serif;
}

/* ---- Bootstrap dark theme overrides ---- */
[data-bs-theme="dark"] {
  --bs-body-bg:          var(--uc-dark);
  --bs-body-color:       var(--uc-white);
  --bs-card-bg:          var(--uc-card);
  --bs-border-color:     var(--uc-border);
  --bs-secondary-color:  var(--uc-muted);
  --bs-link-color:       var(--uc-gold);
  --bs-link-hover-color: var(--uc-gold-lt);
}

/* ---- Base ---- */
body {
  font-family: var(--uc-font-b);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--uc-font-h);
  font-weight: 600;
}

/* ---- Utilities ---- */
.text-gold        { color: var(--uc-gold) !important; }
.bg-uc-dark       { background-color: var(--uc-dark) !important; }
.bg-uc-black      { background-color: var(--uc-black) !important; }
.bg-uc-card       { background-color: var(--uc-card) !important; }
.border-uc        { border-color: var(--uc-border) !important; }

.section-label {
  display: inline-block;
  font-family: var(--uc-font-b);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--uc-gold);
  margin-bottom: .6rem;
}

.divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--uc-gold);
  margin: 1.1rem 0;
}

/* ---- Buttons ---- */
.btn-uc-gold {
  background: var(--uc-gold);
  color: var(--uc-black) !important;
  border: 2px solid var(--uc-gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: .7rem 1.8rem;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-uc-gold:hover { background: var(--uc-gold-lt); border-color: var(--uc-gold-lt); }

.btn-uc-outline {
  background: transparent;
  color: var(--uc-white) !important;
  border: 2px solid var(--uc-white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: .7rem 1.8rem;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-uc-outline:hover { background: var(--uc-white); color: var(--uc-black) !important; }

.btn-uc-outline-gold {
  background: transparent;
  color: var(--uc-gold) !important;
  border: 2px solid var(--uc-gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: .7rem 1.8rem;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-uc-outline-gold:hover { background: var(--uc-gold); color: var(--uc-black) !important; }

/* ---- Navbar ---- */
.uc-navbar {
  background: rgba(10, 10, 10, .96) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--uc-border);
  min-height: 72px;
}
.uc-navbar .navbar-brand img { height: 46px; width: auto; object-fit: contain; }
.uc-navbar .nav-link {
  color: var(--uc-muted) !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 0 !important;
  position: relative;
}
.uc-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--uc-gold);
  transform: scaleX(0);
  transition: transform .25s;
}
.uc-navbar .nav-link:hover,
.uc-navbar .nav-link.active { color: var(--uc-white) !important; }
.uc-navbar .nav-link:hover::after,
.uc-navbar .nav-link.active::after { transform: scaleX(1); }
.uc-navbar .navbar-toggler { border-color: var(--uc-border); }
.uc-navbar .navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991px) {
  .uc-navbar .navbar-collapse {
    padding: 1rem 0 .5rem;
    border-top: 1px solid var(--uc-border);
    margin-top: .5rem;
  }
  .uc-navbar .nav-link { padding: .65rem 0 !important; }
  .uc-navbar .nav-link::after { display: none; }
}

/* ---- Page sections ---- */
.section-pad    { padding: 5.5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.page-hero {
  padding: 8rem 0 4rem;
  background: var(--uc-black);
  border-bottom: 1px solid var(--uc-border);
}

/* ---- Hero ---- */
.uc-hero {
  min-height: 100vh;
  background: var(--uc-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.uc-hero .hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(201,168,76,.025) 40px, rgba(201,168,76,.025) 41px
  );
  pointer-events: none;
}
.uc-hero .hero-logo {
  width: min(360px, 68vw);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 8px 32px rgba(201,168,76,.22));
}
.uc-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; }
.hero-sub {
  color: var(--uc-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--uc-muted);
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll::after {
  content: ''; display: block;
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--uc-gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---- Features strip ---- */
.features-strip {
  background: var(--uc-card);
  border-top: 1px solid var(--uc-border);
  border-bottom: 1px solid var(--uc-border);
}
.feature-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.feature-item p { font-size: .88rem; color: var(--uc-muted); margin: 0; }

/* ---- Service cards ---- */
.uc-service-card {
  background: var(--uc-card);
  border: 1px solid var(--uc-border);
  border-radius: 4px;
  padding: 1.75rem;
  height: 100%;
  transition: border-color .25s, transform .25s;
}
.uc-service-card:hover { border-color: var(--uc-gold-dk); transform: translateY(-3px); }
.uc-service-card .price-tag {
  font-family: var(--uc-font-h);
  font-size: 1.5rem; font-weight: 600;
  color: var(--uc-gold); line-height: 1;
  margin-bottom: .75rem;
}
.uc-service-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.uc-service-card p  { font-size: .88rem; color: var(--uc-muted); margin: 0; }
.uc-service-card .card-divider { height: 1px; background: var(--uc-border); margin: .75rem 0; }

/* Home preview variant */
.uc-service-preview { background: var(--uc-card); border: 1px solid var(--uc-border); border-radius: 4px; padding: 1.75rem; height: 100%; transition: border-color .25s, transform .25s; }
.uc-service-preview:hover { border-color: var(--uc-gold-dk); transform: translateY(-3px); }
.uc-service-preview .service-price { font-family: var(--uc-font-h); font-size: 1.25rem; color: var(--uc-gold); font-weight: 600; white-space: nowrap; }
.uc-service-preview h3 { font-size: 1rem; margin-bottom: .4rem; }
.uc-service-preview p  { font-size: .87rem; color: var(--uc-muted); margin: 0; }

/* ---- Stats ---- */
.stat-item { border-left: 2px solid var(--uc-gold); padding-left: 1.25rem; }
.stat-number { font-family: var(--uc-font-h); font-size: 2.4rem; font-weight: 600; color: var(--uc-gold); line-height: 1; }
.stat-label  { font-size: .78rem; color: var(--uc-muted); letter-spacing: .06em; margin-top: .25rem; }

/* ---- About image frame ---- */
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -1.25rem; right: -1.25rem; bottom: 1.25rem; left: 1.25rem;
  border: 1px solid var(--uc-gold-dk);
  border-radius: 4px; z-index: 0;
}
.about-img-wrap img { position: relative; z-index: 1; width: 100%; border-radius: 4px; filter: grayscale(15%) contrast(1.05); }
@media (max-width: 991px) { .about-img-wrap::before { display: none; } }

/* ---- Quote ---- */
.quote-section {
  background: var(--uc-black);
  border-top: 1px solid var(--uc-border);
  border-bottom: 1px solid var(--uc-border);
  padding: 5rem 0;
}
.quote-section blockquote {
  font-family: var(--uc-font-h);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic;
  color: var(--uc-white); max-width: 760px;
  margin: 0 auto; line-height: 1.45;
}

/* ---- Booking CTA ---- */
.booking-cta {
  background: var(--uc-card);
  border-top: 1px solid var(--uc-border);
  border-bottom: 1px solid var(--uc-border);
  padding: 5rem 0;
}

/* ---- Contact ---- */
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--uc-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; color: var(--uc-gold);
}
.contact-detail-body strong { display: block; color: var(--uc-white); font-size: .9rem; margin-bottom: .2rem; }
.contact-detail-body span   { font-size: .87rem; color: var(--uc-muted); }

.hours-row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--uc-border); font-size: .88rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--uc-muted); }

.contact-form-wrap { background: var(--uc-card); border: 1px solid var(--uc-border); border-radius: 4px; padding: 2.5rem; }
@media (max-width: 575px) { .contact-form-wrap { padding: 1.5rem; } }

/* Bootstrap form dark overrides */
.form-control, .form-select {
  background-color: #111 !important;
  border-color: var(--uc-border) !important;
  color: var(--uc-white) !important;
  border-radius: 2px;
  font-family: var(--uc-font-b);
  font-weight: 300;
}
.form-control:focus, .form-select:focus {
  border-color: var(--uc-gold-dk) !important;
  box-shadow: none !important;
}
.form-control::placeholder { color: var(--uc-muted) !important; }
.form-select option { background: #1c1c1c; }
.form-label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--uc-muted); }

/* ---- Values ---- */
.value-card { background: var(--uc-card); border: 1px solid var(--uc-border); border-radius: 4px; padding: 2rem 1.75rem; text-align: center; height: 100%; }
.value-card .value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1rem; margin-bottom: .6rem; }
.value-card p  { font-size: .87rem; color: var(--uc-muted); margin: 0; }

/* ---- Footer ---- */
.uc-footer { background: var(--uc-black); border-top: 1px solid var(--uc-border); }
.uc-footer h4 { font-family: var(--uc-font-b); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--uc-gold); }
.uc-footer .footer-link { font-size: .88rem; color: var(--uc-muted); text-decoration: none; transition: color .2s; }
.uc-footer .footer-link:hover { color: var(--uc-white); }
.uc-footer address { font-style: normal; font-size: .88rem; color: var(--uc-muted); line-height: 2; }
.uc-footer .footer-bottom { border-top: 1px solid var(--uc-border); }
.uc-footer .footer-copy { font-size: .78rem; color: #555; }
