html {
  background-color: #fffeef;/* #FEFFE3; #DCE4A7;*/
}

.hero {
  position: relative;  
}
.hero-image {
    width: 100%;
  height: 105vh;
  object-fit: cover;
  display: block;
}
.siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /*padding-inline: clamp(16px, 4vw, 64px);  Padding for the left and right — extends accross entire page (outside of hero image)*/
  /* box-sizing: border-box;  */
}
/*
.page-container {
  padding-inline: clamp(16px, 4vw, 64px);
  width: 100%;
  box-sizing: border-box; */
  
.header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.header-announcement-bar-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  padding-top: 1vw;
  padding-bottom: 1vw;
  /* padding-left: 4vw; Replaced by padding-inline: in .siteWrapper;*/
  padding-right: clamp(20px, 6vw, 75px);
  pointer-events: auto;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: inherit;
  padding: 1vw 4vw;
}

.header-display-desktop {
  position: relative;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: center;
}

.header-title-nav-wrapper {
  display: flex;
  flex-wrap: nowrap;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 4vw;
}

.header-title {
  flex-grow: 0;
  flex-shrink: 0;
  backface-visibility: hidden;
}
.header-title-logo {
  display: flex;
  align-items: center;
  width: auto !important;
  font-size: 0;
  height: 50px !important;
  /*outline: 2px solid red;*/
}

.header-title-logo img {
  height: 50px;       /* adjust to taste (32–48px typical) */
  width: auto;
  display: block;
}
  
@media (max-width: 768px) {
  .header-title-logo img {
    height: 32px;
  }
}

.header-title-logo a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  height: 40px;
}

.header-nav {
  display: flex;
  align-items: center;
  /*flex-grow: 1;*/
  /*flex-shrink: 1;*/
 /* margin-left: auto;*/
  gap: 1rem;

}

.header-nav a {
  margin-left: 2vw;
  text-decoration: none;
  color: Black;
  font-family: Copperplate, Sans-Serif;
  font-weight: 500;
}

.header-nav a:hover {
  text-decoration: underline;
}

.header-nav-links {
  flex: 0 0 67%;   /* take up ~67% of nav bar */
  display: flex;
  gap: 2vw;        /* spacing between links */
}

.header-nav-shop {
  flex: 1;          /* takes remaining space to push button to right */
  display: flex;
  justify-content: flex-end; /* push shop button to the far right */
}

.shop-button {
  padding: 0.5rem 1rem;
  background-color: #8ac96b;   /* adjust color */
  color: #000;              /* adjust text color */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.shop-button:hover {
  background-color: #6b9c52;   /* hover effect */
}


.hero-content {
  position: absolute; /* tried absolute; will result in the text moving as the page resizes*/
  top: 12%;         /* distance from top of hero */
  right: clamp(8%, 15%, 20%);       /* distance from right edge */
  max-width: clamp(260px, 35%, 350px);/*350px; optional: limits width; can use % */
  color: black;     /* text color over image */
  text-align: left; /* aligns text to top-right */
  z-index: 5;       /* below header (which has z-index:10) */
 /* background: rgba(0,0,0,0.3);  optional: translucent background for readability */
  padding: 1rem;
  border-radius: 5px; /* optional styling */
}

.hero-content h1 {
  margin-top: 0;
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.8rem, 3vw, 2rem);
}

.hero-content p {
  margin: 0;
  font-size: clamp(1rem,1.4vw,1.25rem);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5%; /* adjust how much of the fade */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #B9C96B 100%);
  z-index: 1; /* below text but above image */
  pointer-events: none;
}
  
.Main-Article {
  background-color: #B9C96B;
  /*background-image: linear-gradient(to bottom, #FEFFE3, #B9C96B);*/
  padding: 3vw clamp(16px, 5vw, 64px); /* Top, Right 5vw, Bottom5 vw, Left 5vw */
  position: relative;
  margin-top: -1px;
  display: flex;
  justify-content: center;
  flex-direction: column;

}

.Main-Article a:link {
  color:#fffeef;
  font-weight: bold;
}

.Main-Article a:hover {
  color:#A68800;
  font-weight: bold;
}

.Main-Article ul li {
display: inline-block;
/* flex-direction: row; */
text-align: center;
/* gap: clamp(10px, 3%, 40px); */
 margin-right: clamp(10px, 3%, 40px);
}

.Main-Article ul li:last-child {
  margin-right: 0;
} 



/* OUTDATED
.header-layout-nav-right .header-nav {
  text-align: right;
  margin-left: auto;
  padding-left: 1.5vw;
}*/

/* OUTDATED
.header-nav-wrapper {
  text-align: right;
}*/

/* OUTDATED
.header-layout-nav-right .header-nav-list {
  justify-content: flex-end;
}*/

/* OUTDATED
.header-nav-list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2vw;
}*/

/* OUTDATED
.header-nav-item {
  display: inline-flex;
}*/

/*body {
  background-image: url("/Images/Frog and Toad.jpg");
  background-repeat: no-repeat;
  background-color: white;
}*/