@charset "utf-8";
/* CSS Document */


    :root {
      --green: #3f6b4f;
	
      --orange: #f28c28;
      --cream: #f7f3ee;
      --dark: #1f1f1f;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--dark);
      background: var(--cream);
      line-height: 1.6;
    }

header {
  background: #ffffff;
  color: var(--dark);
  height: 320px;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centre */
  align-items: center;     /* horizontal centre ✅ */
  text-align: center;
	
	  position: relative; /* 👈 ADD THIS */
}


  header img {
  max-width: 320px; /* increase logo size */
  margin-bottom: 0.5rem;
}

    header h1 {
      margin: 0.5rem 0 0;
      font-size: 2.5rem;
      letter-spacing: 1px;
    }

    header p {
      margin-top: 0.75rem;
      font-size: 1.1rem;
      color: #555;
    }

   section {
  padding: 2.25rem 1.5rem; /* tighter vertical rhythm */
  max-width: 1100px;
  margin: 0 auto;
}

    .intro {
      text-align: center;
    }

    .intro h2 {
      font-size: 2rem;
      color: var(--green);
      margin-bottom: 1rem;
    }

    .intro p {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.05rem;
    }

.social-frame {
  
display: inline-flex;
  flex-direction: column;
  align-items: center;
	margin-top: 0.2rem;
  gap: 0.3rem;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
}

.social-text {
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 0.04em;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}








.social-frame svg {
  width: 34px;
  height: 34px;
  opacity: 0.55;
  transition: opacity 0.2s ease, color 0.2s ease;
}


.social-frame a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-frame a:hover {
  color: var(--green);
}




.social-frame svg {
  width: 34px;      /* logo size */
  height: 34px;
  opacity: 0.55;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.social-frame a:hover svg {
  opacity: 1;
  color: var(--green);
}


    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .feature {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .feature h3 {
      margin-top: 0;
      color: var(--orange);
    }


    .terms {
      background: #fff;
      border-radius: 16px;
      padding: 3rem 2rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .terms h2 {
      text-align: center;
      color: var(--green);
      margin-bottom: 1.5rem;
    }

    .terms p {
      text-align: left;
		font-size: 0.8rem;
      max-width: 850px;
      margin: 0 auto 0.5rem;
    }

    .markets {
      background: #fff;
      border-radius: 16px;
      padding: 3rem 2rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .markets h2 {
      text-align: center;
      color: var(--green);
      margin-bottom: 1.5rem;
    }

    .markets p {
      text-align: center;
      max-width: 850px;
      margin: 0 auto 2rem;
    }

    .cta {
      background: linear-gradient(135deg, var(--green), var(--orange));
      color: #fff;
      text-align: center;
      padding: 4rem 1.5rem;
    }

    .cta h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }

    .cta p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .image-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  
  max-width: 1200px;
  margin: 0 auto;
}

.image-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}


    .cta a {
      display: inline-block;
      background: #fff;
      color: var(--dark);
      padding: 0.9rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .cta a:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

    footer {
      background: var(--dark);
      color: #bbb;
      padding: 2rem 1.5rem;
      text-align: center;
      font-size: 0.9rem;
    }

    footer span {
      color: #fff;
    }

.wilton-markets {
  padding: 1.5rem 1.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.wilton-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.wilton-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.wilton-item {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
}


.wilton-item h3 {
  color: var(--orange);
  margin-top: 0;
}

.wilton-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 3rem;
}


.wilton-date {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0.4rem;
}


.wilton-book {
  margin-top: auto;        /* keeps it at the bottom */
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  align-self: center;      /* centres it horizontally ✅ */
}


.wilton-book:hover {
  border-bottom-color: var(--green);
}


.spaces {
	font-size: 0.8rem;
	color: crimson;
	font-weight: bold;
}

	  .iframe-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.iframe-wrap iframe {
  width: 100%;
  height: 1400px;
  border: none;
}

.home-link {
  display: block;
}

.home-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;

  color: #777;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-icon:hover {
  color: var(--green);
}

.section-image {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
}
  