/* Cinzel font */
.cinzel {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

:root{
    --bg:#ddfeff;
    --ink:#23303a;
    --muted:#506472;
    --brand:#a86ad6; /* soft accent */
    --brand-2:#ff8fb3; /* secondary accent */
  }
html,body{
  height:100%;
  margin: 0 auto;
}

body {
  background-color:var(--bg);
  color:var(--ink);
  font-family: Segoe UI, Roboto, Helvetica, Arial;
  padding-top:72px}

.bg-page {
  background:var(--bg);
}

.navbar{
  backdrop-filter:saturate(140%) blur(6px);
}

.navbar, .navbar *{
  transition:all .2s ease
}

.navbar.bg-white{
  box-shadow:0 6px 18px rgba(0,0,0,.06)
}

.btn-brand{
  background:var(--brand);
  border:none;
  transition: all 0.25s ease;
}

.btn-brand:hover{
  background-color: rgba(168, 106, 214, 0.8);
}

.section-title{
  font-weight:700
}

#about p {
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

#about .lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}

#about p:not(.lead) {
  color: var(--muted);
}

#about p:last-child {
  margin-bottom: 0;
}

.logo-header {
  font-size: 10rem;
}

.lead{
  color:var(--muted)
}

.card {
  border: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.services-card:hover {
  background-color: #c8f1f3;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

form {
  background-color: rgba(255,255,255,0.9);
}

.about-img {
  max-width: 260px;
  height: auto;
}

#thankYou {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(168, 106, 214, 0.15);
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 300;
  padding: 40px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  color: var(--ink);
  text-align: center;
  opacity: 0;
  transform: translateY(20px); /* small slide up */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#thankYou.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-wrap{
  padding:36px 0 12px
}

.testimonial-copy{
  font-size:1.05rem
}

footer a{
  color:var(--ink)
}

footer a:hover{
  color:var(--brand)
}