/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; }

/*Varaibles*/
:root {
  /*--bg: #ffffff;*/
  --bg: #ffe6ff;
  --text: #ff80ff;
  --mainPage: #000000;
  --black: #000000;
  --muted: #5b5b5b;
  --line: #e9e9e9;
  --card: #ffccff;
  --alt: #fafafa;
  /*--btn: #121212;*/
  --btn: #ffb3ff;
  --btnText: #000;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --max: 1100px;
  --hamburger-bg: var(--btn);
  --hamburger-line: var(--btnText);
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--black);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.75rem; }
h1 { font-size: clamp(2rem, 3.6vw, 3rem); color: var(--mainPage)}
h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h3, .h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.1rem;
}

.section { padding: 3.2rem 0; }
.section.alt { background: var(--bg); }
.section.cta { padding: 2.5rem 0; }

.lead { font-size: 1.1rem; color: var(--black)}
.eyebrow { color: var(--mainPage); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; margin-bottom: 0.6rem; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}



.logo { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.logo-mark { font-size: 1.2rem; }
.logo-text { letter-spacing: 0.01em; }

/* Logo as image */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  text-decoration: none;
}

.logo-img {
  height: 44px;     /* adjust if needed */
  width: auto;
  display: block;
  border-radius: 10px; /* optional: matches your rounded UI */
}

/* Hover effect (similar “subtle UI” feel) */
.logo:hover .logo-img {
  transform: translateY(-1px);
  opacity: 0.92;
}

.logo-img {
  transition: transform 160ms ease, opacity 160ms ease;
}


.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--black);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--hamburger-bg);
  border-radius: 999px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

/* Hamburger icon */
.hamburger {
  width: 22px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  /*background: #fff; /* change if needed */
  background: var(--hamburger-line);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
  opacity: 0.9;
}

.nav-toggle:active {
  transform: scale(0.96);
}


.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* Animate hamburger to X */
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--btn);
  color: var(--btnText);
  border: 1px solid var(--btn);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn:hover { text-decoration: none; opacity: 0.92; }
.btn:active { transform: translateY(1px); }

.btn-small { padding: 0.55rem 0.85rem; font-size: 0.95rem; }
.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--line);
}

.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.3rem 0 1.1rem; }

.map-actions {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-start;
}

/* Layout helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}



.card-media {
  margin-top: 0.9rem;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 1rem;
  height: 500px;
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;        /* fill container */
  object-fit: cover;  /* crop nicely */
  object-position: center;
}


.card:hover .card-media img {
  transform: scale(1.02);
}

.card .btn {
  margin-top: auto; /* pushes button to bottom */
}

.hero-card { position: relative; }

.divider {
  height: 1px;
  background: var(--line);
  margin: 1.6rem 0;
}

.list { margin: 0.6rem 0 0; padding-left: 1.2rem; }
.list li { margin: 0.35rem 0; }
.link { font-weight: 600; }

/* Trust */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.6rem;
}
.trust-item { font-size: 0.95rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: #fff;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

/* CTA */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--bg);/* #fff;*/
  /*box-shadow: var(--shadow);*/
}

/* FAQ */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: #fff;
  margin: 0.7rem 0;
}
.faq summary { cursor: pointer; font-weight: 700; }

/* Form */
.form { display: grid; gap: 0.75rem; margin-top: 0.7rem; }
label { display: grid; gap: 0.4rem; font-weight: 600; }
input, textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}
input:focus, textarea:focus { outline: 2px solid rgba(0,0,0,0.12); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background-color: white;
  padding: 2rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.footer-links { display: grid; gap: 0.4rem; }

/* Footer logo */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-logo-img {
  height: 48px; /* slightly bigger than header */
  width: auto;
  display: block;
  border-radius: 12px;
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}

/* Hover effect */
.footer-logo:hover .footer-logo-img {
  transform: translateY(-1px);
  opacity: 0.92;
  box-shadow: var(--shadow);
}


/* Responsive */
@media (min-width: 900px) {
  .card-media img { height: 100%; }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    right: 1.1rem;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    min-width: 220px;
  }
  .site-nav.is-open { display: flex; }
}

