:root {
  --font-heading:  "Mystery Quest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body:  "Noto Serif", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ink: #0b2b3f;
  --sea: #0f4c75;
  --sea-2: #1b6a8f;
  --sand: #f0ead2;
  --foam: #ffffff;
  --accent: #e05266;
  --radius: 16px;
  --shadow: 0 6px 18px rgba(0,0,0,.12);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--ink);
  /* background: linear-gradient(#35bbae 0%, #eee 100%); */
  background: #03dcff; 
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sea);
  text-decoration: none;
}

a: hover {
  text-decoration: underline
}

a img {
  display: inline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link: focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: .5rem .75rem;
  background: var(--foam);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: #35bbae;
  border-bottom: 1px solid rgba(15,76,117,.08);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  letter-spacing: .2px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,var(--accent),#f7d78a);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.nav a {
  padding: .4rem .7rem;
  border-radius: 10px;
}

.nav a[aria-current="page"], .nav a: hover {
  background: rgba(15,76,117,.08);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 70svh;
  display: grid;
  align-items: center;
  padding: 3rem 1rem 6rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.eyebrow {
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sea);
}

h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  font-size: clamp(2rem,6vw,3.4rem);
  z-index: 100;
}
h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  margin: 2rem 0 1rem 0;
  font-size: clamp(1rem,3vw,1.7rem);
}

.hero p {
  font-size: clamp(1rem,2.4vw,1.15rem);
  max-width: 60ch;
}

.cta {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  background: var(--sea);
  color: var(--foam);
  font-weight: 600;
  border: 0;
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: var(--sand);
  color: var(--ink);
}

.btn: focus-visible {
  outline: 3px solid #94d2ff;
  outline-offset: 3px;
}

section {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

iframe {
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  padding: 0;
  gap: .6rem;
}

.card h3 {
  font-family: var(--font-heading);
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 1.25rem;
  text-align: center;
  background: darkturquoise;
}

.card p {
  text-align: center;
  padding: 1rem;
}

.muted {
  color: #335;
}

.gallery {
  display: grid;
  gap: .6rem;
  grid-template-columns: repeat(2,1fr);
}

.gallery img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: .8rem;
  max-width: 560px;
}

label {
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.1);
  font: inherit;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.03);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  padding: 2rem 1rem 5rem;
  text-align: center;
  color: white;
  background: #35bbae;
}

.polaroid  {
  max-width:  20rem;
  padding: 8px 8px 16px 8px;
  background-color:  white;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}

.polaroid p {
  padding: 0;
  margin: 0;
}

@media (min-width: 720px) {
  .hero {
    min-height: 78svh;
  }
  .card-grid {
    grid-template-columns: repeat(3,1fr);
  }
  .gallery {
    grid-template-columns: repeat(4,1fr);
  }

}

.heart ul {
  list-style-type: "♥️ ";
}

.bordered {
  position: relative;
  height: 75px;
  width: 100%;
  border-top: 40px solid lightblue;
  background: #FFF;
  padding-top: 10px;
}

.bordered:before {
  position: absolute;
  content: '';
  top: 0px;
  height: 8px;
  width: 100%;
  background-size: 12px 12px;
  background-position: -5px -3px;
  background-image: radial-gradient(circle at 50% 0%, lightblue 50%, transparent 55%);
}
