:root {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color-scheme: light;
  --bg: #f7f6f3;
  --text: #1f1f1f;
  --muted: #6a6a6a;
  --accent: #0e7c7b;
  --accent-soft: rgba(14, 124, 123, 0.12);
  --card-bg: #fffefd;
  --border: rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}


p,h1,h2,ul, ul li,h3{
  
  
  color: var(--text);
  
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 0;
}

.lede {
  margin: 0 auto;
  max-width: 640px;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}


.content{
  
  display: flex;
  
  
}


.info {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  float:left;
  width:100%;
  height:auto;
}

.info ul {
  padding-left: 1.1rem;
  margin-top: 1.5rem;
  color: var(--text);
}

.signup-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 35px rgba(10, 10, 10, 0.08);
}

.card-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.signup-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
}

.signup-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.form-placeholder {
  border: 2px dashed var(--accent);
  border-radius: 14px;
  padding: 2.5rem 1rem;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--accent);
}

.site-footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.google-form {
  width: 100%;
}

a:link, a:visited{
  
  color:#000;
  
}

.btn{
  
  border-radius:.25rem;
  padding:10px 15px;
  text-align:center;
  text-decoration:none;
  background:#0e7c7b;
  color:#fff !important;
}

.google-form iframe {
  width: 100%;
  min-height: 100vh;   /* at least viewport height */
  height: 2700px;      /* still set a sane default */
  border: 0;

  /* Hide scrollbar */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge legacy */
}

.google-form iframe::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery h2 {
  margin: 0;
}

.gallery p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  filter: brightness(1.02);
}

.gallery-grid figcaption {
  padding: 0.9rem 1.1rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__content {
  position: relative;
  width: min(900px, 90vw);
}

.lightbox__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.45);
}

.lightbox__caption {
  margin-top: 1rem;
  text-align: center;
  color: #f1f1f1;
  font-size: 1rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.lightbox__nav:hover,
.lightbox__close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.lightbox__close {
  top: -18px;
  right: -18px;
  transform: none;
  font-size: 1.6rem;
}

.lightbox__prev {
  left: -22px;
}

.lightbox__next {
  right: -22px;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 768px){
  .google-form iframe{
    height: 3000px; /* mobile often needs more */
  }

  .lightbox__content {
    width: 100%;
  }

  .lightbox__prev {
    left: 6px;
  }

  .lightbox__next {
    right: 6px;
  }
}

@media (max-width: 520px) {
  .page {
    padding-top: 3rem;
    gap: 2rem;
  }

  .signup-card {
    padding: 1.5rem;
  }

  .gallery-grid img {
    height: 180px;
  }

  .lightbox__close {
    right: 0;
  }
}


