	body {
	  font-family: 'Segoe UI', sans-serif;
	  margin: 0;
	  padding: 10;
	  color: #333;
	}
	header {
	  --- background: #004d40;
	  --- color: #fff;
	  color: #004d40;
	  padding: 1rem;
	}
	nav a {
	  margin: 0 10px;
	  --- color: #fff;
	  color: #004d40;
	  text-decoration: none;
	  text-align: right;
	}
	.hero img {
	  width: 100%;
	  height: auto;
	}
	.accommodations {
	  /*display: grid; */
	  gap: 1rem;
	  padding: 2rem;
	}
	.cottage {
	  border: 1px solid #ddd;
	  padding: 1rem;
	}
	.cottage img {
	  width: 100%;
	  height: auto;
	}
	.btn {
	  background: #00796b;
	  color: white;
	  padding: 1rem;
	  text-decoration: none;
	  display: inline-block;
	  margin: 1rem auto;
	}
	form {
	  display: flex;
	  flex-direction: column;
	  gap: 1rem;
	  padding: 2rem;
	}
	label {
	  display: flex;
	  flex-direction: column;
	}
	button {
	  background: #00695c;
	  color: white;
	  padding: 1rem;
	  border: none;
	}
	
   .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      max-width: 100%;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    
     /* HEADER VIDEO */
    .header-video {
      position: relative;
      width: 100%;
      height: 60vh; /* adjust height as needed */
      overflow: hidden;
    }

    .header-video iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 177.78vh; /* 16:9 ratio trick */
      height: 100vh;
      transform: translate(-50%, -50%);
      pointer-events: none; /* disables clicks */
    }

    /* Optional overlay text */
    .header-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: rgba(0, 0, 0, 0.25);
      color: white;
      z-index: 2;
    }

    .header-overlay h1 {
      font-size: clamp(2rem, 5vw, 4rem);
      margin: 0;
    }