/* Basic site styles to match the mockup aesthetic */
:root{
  --color-cream:#F4F1EC;
  --color-navy:#2B3C44;
  --color-wood:#8B5E3C;
  --color-black:#1C1C1C;
  --color-steel:#C0C0C0;
  --color-yellow:#E3C965;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--color-black);
  background: var(--color-cream);
}

.hero{
  min-height:100svh;
  display:grid;
  place-items:center;
  background-image:url('/images/background.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
}
.hero::after{ /* subtle darken for text contrast */
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,0.18);
}
.overlay{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  padding:28px 32px;
  border-radius:18px;
  background: color-mix(in oklab, white 45%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border:1px solid color-mix(in oklab, white 35%, transparent);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.title{
  margin:0;
  font-size: clamp(28px, 5vw, 48px);
  font-weight:700;
  color:#1f2a30; /* deep navy */
  letter-spacing:0.2px;
}
.subtitle{
  margin:0;
  font-size: clamp(18px, 3vw, 28px);
  font-weight:600;
  color:#32434a;
}
.cta-row{
  margin-top:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.btn{
  display:inline-block;
  padding:12px 24px;
  border-radius:9999px;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-weight:700;
  text-decoration:none;
  letter-spacing:0.3px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow:0 10px 20px rgba(0,0,0,0.22);} 
.btn:active{ transform: translateY(0); box-shadow:0 6px 16px rgba(0,0,0,0.18);} 

.ig{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:9999px;
  color: var(--color-navy);
  background: color-mix(in oklab, white 80%, transparent);
  border:1px solid color-mix(in oklab, white 60%, transparent);
  box-shadow: 0 6px 16px rgba(0,0,0,0.16);
  transition: transform .12s ease;
  text-decoration:none;
}
.ig:hover{ transform: translateY(-1px); }

