/* ============================================
   Donato Salon + Spa — global styles
   Fonts/colors matched to the live theme:
   headings Montserrat 700, body Poppins 400
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #000;
  --dark: #333;
  --text: #212121;
  --muted: #666;
  --border-gray: #667085;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background-color .3s, color .3s, border-color .3s;
  text-align: center;
}
.btn-white {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  border-radius: 8px;
}
.btn-white:hover { background: transparent; color: #fff; border-color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
}
.btn-outline-light:hover { background: #fff; color: #000; }

.btn-dark {
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
  border-radius: 0;
}
.btn-dark:hover { background: #fff; color: #000; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}
/* source PNG is white-on-transparent; invert for the white header */
.logo img { height: 48px; width: auto; filter: invert(1); }

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}
.main-nav ul { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 15px;
  letter-spacing: .04em;
  color: #121212;
  transition: opacity .2s;
}
.main-nav a:hover { opacity: .6; }

.nav-toggle { display: none; }

/* ---------- Hero (black split section) ---------- */
.hero {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.hero-text {
  padding: 96px 48px 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-text h1 {
  color: #fff;
  font-size: 32px;
  line-height: 1.3;
  max-width: 32rem;
}
.hero-text p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  max-width: 35rem;
  margin-top: 20px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 32px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Luxury banner (overlay on image) ---------- */
.luxury-banner { position: relative; }
.luxury-image img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: center;
}
.luxury-overlay {
  position: absolute;
  top: 0;
  left: 5rem;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.luxury-overlay h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.25;
  max-width: 32rem;
}
.luxury-overlay .btn { margin-top: 1.5rem; }

/* ---------- Salon Services ---------- */
.services { position: relative; margin: 48px 0; }
.services-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: left center;
}
.services-text {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 64px;
}
.services-text h2 {
  font-size: 1.9rem;
  color: var(--text);
  margin-bottom: 8px;
}
.services-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 34rem;
}
.services-text .btn { margin-top: 1.5rem; }

/* ---------- BELLAMI banner ---------- */
.bellami img { width: 100%; height: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: #fff;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}
.footer-brand img { width: 220px; height: auto; }
.footer-brand p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 18rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.footer-col h3 {
  font-size: 17px;
  margin-bottom: 18px;
}
.footer-info li { margin-bottom: 12px; }
.footer-info a { font-size: 15px; transition: opacity .2s; }
.footer-info a:hover { opacity: .6; }
.footer-location p { font-size: 15px; line-height: 1.8; }
.social-icons { display: flex; gap: 20px; }
.social-icons img { width: 22px; height: 22px; }
.social-icons a { transition: opacity .2s; }
.social-icons a:hover { opacity: .6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-bottom ul { display: flex; gap: 28px; }
.footer-bottom a:hover { opacity: .6; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-text { padding: 64px 32px; }
  .hero-text h1 { font-size: 28px; }
  .hero-text p { font-size: 16px; }

  .luxury-image img { height: 500px; }
  .luxury-overlay {
    position: static;
    padding: 0 16px;
    margin-bottom: 24px;
  }
  .luxury-overlay h2 { color: #000; font-size: 42px; max-width: 95%; }

  .services-image img { height: 400px; }
  .services-text {
    position: static;
    width: 100%;
    height: auto;
    padding: 12px 16px 0;
  }
  .services-text h2 { font-size: 28px; }
}

@media (max-width: 767px) {
  .header-inner { padding: 14px 16px; gap: 16px; }
  .logo img { height: 40px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 16px 16px;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  body.nav-open .main-nav { display: flex; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .main-nav li { width: 100%; }
  .main-nav a { display: block; padding: 12px 0; font-size: 16px; }

  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-text { padding: 48px 16px; }

  .luxury-overlay { padding: 0 16px; margin: 24px 0; }
  .luxury-overlay h2 { font-size: 34px; }
  .luxury-overlay .btn { width: 100%; }
  .luxury-image img { height: 280px; }

  .services { margin: 24px 0; }
  .services-image img { height: 250px; }
  .services-text h2 { font-size: 22px; margin-top: 4px; }
  .services-text .btn { width: 100%; }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 48px 16px 32px;
    gap: 36px;
  }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding: 20px 16px; flex-direction: column; align-items: flex-start; }
  .footer-bottom ul { flex-wrap: wrap; gap: 16px; }
}
