@import "./variables.css";

header {
  background: linear-gradient(180deg, var(--pink), var(--rose));
  color: #fff;
  padding: .5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  height: var(--nav-height);
  overflow: visible;
}
.brand { display:flex; gap:.6rem; align-items:center; }
.logo-wrap { max-width:160px; display:flex; align-items:center; overflow:hidden; }
.logo-wrap img {
  display:block;
  width:auto;
  height:56px;            /* fixed height for consistent header size */
  max-width:100%;
  object-fit:contain;
}

.logo-wrap {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}


/* Brand title next to logo */
.brand-title h1 { margin:0; font-size:1.05rem; color:white; }
.brand-title .tagline { margin:0; font-size:.82rem; color: #ffeafa; }

/* Nav */
.nav-toggle { display:none; background:transparent; border:0; color:white; font-size:1.25rem; padding:.5rem; }
nav { display:flex; gap:.75rem; align-items:center; }
nav a { color: white; font-weight:700; padding: .4rem .6rem; border-radius: 6px; }
nav a:hover, nav a:focus { outline:none; box-shadow: var(--focus-shadow); background: rgba(255,255,255,0.06); }

/* Main */
main { padding: 1.25rem 0; }

/* Hero */
.hero { text-align:center; padding:1.25rem; background:var(--blush); border-radius:var(--radius); box-shadow:0 2px 6px rgba(0,0,0,0.04); }
.hero-ctas { margin-top:.75rem; }

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  background: linear-gradient(180deg, var(--pink), var(--rose));
  color: black; /* changed from white */
}

footer a {
  color: black; /* ensure phone and email are visible */
  text-decoration: underline;
}

.footer-contact {
  margin-bottom: .5rem;
}

.footer-sep {
  width: 80%;
  margin: 1rem auto;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
