﻿body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  text-align: center;
}
header, footer {
  background-color: #006400; /* deep green for Stowe */
  color: white;
  padding: 1rem 0;
}
header a, footer a { color: #ffffff; }
h1 {
  color: #FFD700; /* keep main title gold for flair */
}
h2 {
  color: #B8860B; /* darker, readable gold for subheadings */
  margin: 0.5rem 0;
}

a {
  color: ##6a1b9a; 
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
nav {
  background-color: #228B22; /* forest green nav */
  padding: 0.5rem 0;
}
nav a {
  color: white;
  margin: 0 1rem;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}
nav a.active { 
  color: #90EE90; /* light green active */
  text-decoration: underline;
}
.container {
  padding: 1rem;
  max-width: 960px;
  margin: 0 auto;
}
.gallery-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.gallery-vertical img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.review {
  background-color: #fff;
  margin: 1rem auto;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  max-width: 800px;
  text-align: left;
}
.btn {
  display: inline-block;
  background: #FFD700; /* gold button */
  color: #006400; /* deep green text */
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  margin: 1rem 0;
  text-decoration: none;
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 720px; /* optional max width */
  margin: 0 auto; /* center */
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: #c62828;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}
#backToTop:hover {
  background-color: #a71d1d;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}
form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
    input, textarea { padding: 0.5rem; font-size: 1rem; border-radius: 4px; border: 1px solid #ccc; width: 100%; }
    button { padding: 0.75rem; background-color: #c62828; color: white; border: none; border-radius: 4px; font-size: 1rem; cursor: pointer; }
    button:hover { background-color: #a71d1d; }
  .formsite-wrapper {
  max-width: 600px; /* matches your container width */
  margin: 1rem auto; /* centers form */
}
