/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html {
  margin: 0;
  min-height: 100%;
  overflow-x:hidden;
}
  
  
body {
  min-height: 100vh;
  margin: 0;
  padding: 18px 16px;
  overflow-x: hidden;
  color: #222;
  text-align: left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  animation: breathe 18s ease-in-out infinite;
}

@keyframes breathe {
  0% { background-size: 100% 100%; }
  50% { background-size: 110% 110%; }
  100% { background-size: 100% 100%; }
}


.container {
  position: relative;
  max-width: none;
  width: auto;
  margin:0;
  padding: 0;
  z-index: 1;
  
}


#season-bg-a,
#season-bg-b {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 2.2s ease-in-out;
}

#season-bg-a {
  opacity: 1;
}
/* seasonal background colors */
.season-winter {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.85) 0%,
    rgba(248,249,251,0.65) 65%,
    rgba(242,244,247,0.75) 100%
  );
}

.season-spring {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.85) 0%,
    rgba(244,219,230,0.55) 65%,
    rgba(233,172,200,0.60) 100%
  );
}

.season-summer {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.85) 0%,
    rgba(242,213,154,0.55) 65%,
    rgba(248,181,83,0.60) 100%
  );
}

.season-fall {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.85) 0%,
    rgba(194,182,200,0.55) 65%,
    rgba(149,125,158,0.60) 100%
  );
}


#dream-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  
  background-image: url("DSCN1221.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
  filter: blur(2.5px) saturate(1);
  z-index: -1;
  pointer-events: none;
}


h1 {
  font-size: 42px;
  margin-bottom: 6px;
  
}


.email {
  margin: 0 0 10px 0;
  font-size: 16px;
   font-family:"neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  color: #555;
}

.subtitle {
  margin: 0 0 10px 0;
  color: #555;
}


.entry-block {
  margin-bottom: 48px;
}


.club {
  font-family:"neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  font-size: 16px;
}

.notes {
  font-family: "kepler-std",serif;
  font-style: italic;
  font-weight:400;
  font-size: 18px;
  letter-spacing: 0.7px;
}

.hex1 {
  font-family: "kepler-std",serif;
  font-style: normal;
  font-weight:400;
  font-size: 16px;
  letter-spacing: 0.7px;
  color:#f2f4f7;
  text-shadow: 0 0 6px rgba(150,160,180,0.4);
}

.date03 {
  font-family:"neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  font-size: 16px;
  color:#f2f4f7;
  text-shadow: 0 0 6px rgba(150,160,180,0.4);
}

.reading-label {
  font-family:"neue-haas-grotesk-display", sans-serif;
 font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  font-size: 16px;
}
 
.book-title {
  font-family: "kepler-std",serif;
  font-style: italic;
  font-weight:400;
  font-size: 16px;
  letter-spacing: 0.7px;
}

.author-name {
  font-family: "kepler-std",serif;
  font-style: normal;
  font-weight:400;
  font-size: 16px;
  letter-spacing: 0.7px;
}

.love-line{
  color:#dbe4ec;
  font-family:"kepler-std",serif;
  font-style:italic;
  font-weight:400;
  font-size: 16px;
  letter-spacing: 0.7px;
}

.winter-text{
  font-family: "kepler-std",serif;
  font-style: normal;
  font-weight:400;
  font-size: 16px;
  letter-spacing: 0.7px;
  color:#f2f4f7;
  text-shadow: 0 0 8px rgba(150,160,180,0.6);
}
  
.nav {
  margin-top: 28px;
  margin-bottom: 28px;
  line-height: 1.6;
  font-family:"neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
}

.nav a,
.season-links a {
  color: #333;
  text-decoration: underline;
  font-size: 18px;
  font-family:"neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
}

.content {
  margin-top: 20px;
  max-width: none;
  min-height: calc(100vh - 220px);
  overflow-y: hidden;
  padding-bottom: 140px;
  box-sizing: border-box;
}

.content.scrollable {
  overflow-y: auto;
}

.section {
  margin-top: 20px;
   font-family: "kepler-std",serif;
  font-style: normal;
  font-weight:400;
  letter-spacing: 0.7px;
}


.section-title {
  font-size: 22px;
  margin-bottom: 18px;
  font-family:"neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
  color: #333;
}

.about-text {
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-sign {
  margin-top: 20px;
}

.entry {
  margin-top: 20px;
  font-family: "kepler-std",serif;
  font-style: normal;
  font-weight:400;
  letter-spacing: 0.5px;
}

.entry-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-family:"neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
}

.hidden {
  display: none;
}


.close-main {
  display: block;
  margin-top: 40px;
  font-size: 14px;
  color: #333;
  text-decoration: underline;
  cursor: pointer;
  font-family: "kepler-std",serif;
  font-style: normal;
  font-weight:400;
  letter-spacing: 0.5px;
}

.close-main:hover {
  opacity: 0.7;
  color: #000;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }
  
  body {
    background-attachment: scroll;
  }
  
  .content {
    width: 90%;
    height: calc(100vh - 180px);
    padding: 10px 10px 200px 10px;
    overflow-y: hidden;
    box-sizing: border-box;
  }
  
  .content.scrollable {
    overflow-y: auto;
  }
}
