﻿:root {
	--menu-width: clamp(300px, 20vw, 50vw);
	--nav-height: 200px;
}

html {
	min-height: 100%;
	overscroll-behavior-y: none;
}

body {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    background-color: #909090;
    margin: 0;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}

/*@media screen {
	body {
		width: 980px;
	}
}
*/
#container {
	width: 100%;
}


#nav {
	/*background-color: #555;*/
	background: rgba(57, 57, 57, 0.9);
	position: fixed;
	top: 0;
	width: 100%;
	transition: top 0.3s;
	font-size: clamp(2rem, 2vw, 2vw);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#nav a {
	color: white;
	padding: 45px;
	text-decoration: none;

}

#nav a:hover {
	color:black;
	background: rgba(57, 57, 57, 1.0);
}

.quip {
	display: grid;
	place-content: center;
	text-align: center;
	min-height: 1000px;
}

.quip2 {
	padding: 20px;
	color: white;
	font-size: clamp(1.4em, 1.4vw, 1.6vw);
	background: rgba(57, 57, 57, 0.6);
}

.quip3 {
	padding: 50px;
	margin-top:100px;
	color: white;
	font-size: clamp(2rem, 2vw, 2vw);
	background: rgba(57, 57, 57, 0.95);
}

.cove {
    background-image: url("../images/cove.jpg");
    background-size: cover;
    background-position: center;
    background-origin: border-box;
}


.river {
	background-image: url("../images/river2.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.walk {
    background-image: url("../images/walk.jpg");
    background-size: cover;
    background-position: center;
    background-origin: border-box;
}

.leaves {
	background-image: url("../images/leaves.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.bay {
	background-image: url("../images/TillamookBay.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.winter {
	background-image: url("../images/winter.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.cape {
	background-image: url("../images/capemeares.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.sunset {
	background-image: url("../images/YaquinaSunset.png");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.cherrytree {
    background-image: url("../images/CherryTree.jpg");
    background-size: cover;
    background-position: center;
    background-origin: border-box;
}

.elk {
	background-image: url("../images/elk.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.moon {
	background-image: url("../images/moon.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.flowers {
	background-image: url("../images/flowers.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.cherries {
	background-image: url("../images/cherries.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.cove2 {
    background-image: url("../images/cove2.jpg");
    background-size: cover;
    background-position: center;
    background-origin: border-box;
}

.daffodil {
	background-image: url("../images/daffodil.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.trillium {
	background-image: url("../images/trillium.jpg");
	background-size: cover;
	background-position: center;
	background-origin: border-box;
}

.banner {
	background-color: #555;
	width: 100%;
	color: white;
	font-size: clamp(1.2em, 1.2vw, 1.2vw);
	display: flex;
    flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 3vw;
	padding-bottom: 3vw;
}

.banner a {
    color: #AAA;
    text-decoration: none;
}

.banner a:hover {
	color: black;
}


.banner-thin {
	background-color: #555;
	width: 100%;
	color: white;
	font-size: clamp(1.2em, 1.2vw, 1.2vw);
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 1vw;
	padding-bottom: 1vw;
}

.about {
	background-image: url("../images/capemeares2.png");
	background-size: cover;
	background-position: center;
	color: white;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.info {
    font-size: 1.2em;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: clamp(400px,25vw,25vw);
    margin: auto;
}

.about-text {
    width: clamp(400px, 25vw, 25vw);
    padding: 20px;
    margin: 2vh 20px 2vh 20px;
    color: white;
    font-size: 1.2em;
    background: rgba(57, 57, 57, 0.6);
    border-radius: 20px 20px 20px 20px;
}

.break {
    flex-basis: 100%;
    height: 0;
}

@media screen and (max-width: 600px) {
	.info {
		width: 75vw;
	}

    .about-text {
        width: 100%;
    }
}

.about-text a {
    color: #c0c0d0;
    text-decoration: none;
}

.about-text a:hover {
    color: black;
}

.about-img {
    width: 24%;
    height: auto;
    margin: 20px;
    border-radius: 20px;
}

.about-icons {
    padding: 20px;
}

.work-banner {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 30px;
    color: black;
    font-weight: bold;
    font-size: clamp(2rem, 2vw, 2vw);
}

.work-items {
    display: flex;
    justify-content: center;
    column-gap: 50px;
    row-gap: 50px;
    padding-bottom: 50px;
    flex-wrap: wrap;
}

.padtop {
    padding-top: 50px;
    width: 80%;
    margin: auto;
}

.work-items iframe {
    width: 0;
    flex: 1 1 calc(25% - 20px);
    aspect-ratio: 16 / 9;
}

.book {
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 20px;
    padding-top: 20px;
    width: 40%;
    font-size: clamp(1.2em, 1.2vw, 1.2vw);
    background-color:#B0B0B0;
}

.book-wide {
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 20px;
    width: 70%;
    font-size: clamp(1.2em, 1.2vw, 1.2vw);
}

.book-title {
    text-align: center;
    margin: 15px;
    font-weight: bold;
    color: black;
    font-size: clamp(1.2rem, 1.2vw, 1.2vw);
}

.book-title a {
    color: darkblue;
    text-decoration: none;
}

.book-rhs {
    flex-basis: 45%;
}

.book-image {
    display: flex;
    justify-content: center;
}

.book-image img {
    border-radius: 3%;
    margin-top: 50px;
    width: 20vw;
}

.book-pub {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 20px auto 20px auto;
    width: 60%;
    font-size: clamp(1rem, 1.2vw, 1.2vw);
}

.book-art {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 40px auto 20px auto;
    width: 60%;
    font-size: clamp(1rem, 1.2vw, 1.2vw);
}

.book-info {
    display: flex;
    justify-content: center;
    margin: 40px auto 20px auto;
    width: 80%;
    font-size: clamp(1rem, 1.2vw, 1.2vw);
}

.poem-title {
    margin: 5px auto 20px auto;
    font-weight: bold;
    font-size: clamp(1rem, 1.2vw, 1.2vw);
    width: 80%;
}

.poem {
    margin: auto;
    width: 80%;
}

.poem pre {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: clamp(0.8rem, 1.11vw, 1.1vw);
    margin-left: 5px;
}

.poem-ack {
    margin: auto;
    padding-left: 5px;
    /*	align-content: center;*/
    width: 80%;
    font-size: 1.2rem;
}

.book-more {
    display: flex;
    justify-content: center;
    margin: 30px auto 20px auto;
    width: 80%;
    font-weight: bold;
    font-size: clamp(1rem, 1.2vw, 1.2v);
}

.book a {
    color: white;
    text-decoration: none;
}

.book a:hover {
    color: black;
}

.book-wide a {
    color: darkblue;
    text-decoration: none;
}

.book-wide a:hover {
    color: black;
}

.newsletter {
}

#nav-container {
    position: fixed;
    height: 100vh;
    width: 100%;
    pointer-events: none;
}

#nav-container .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    background: #000;
}

#nav-container:focus-within .bg {
    visibility: visible;
    opacity: .6;
}

#nav-container * {
    visibility: visible;
    }

.button {
    position: relative;
    left: calc(100% - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    height: var(--nav-height);
    width: var(--nav-height);
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
}


.button-menu {
}

.button-menu a {
    color: white;
    padding: 45px;
    text-decoration: none;
    font-size: clamp(2rem, 2vw, 2vw);
}

button-menu a:hover {
    color: black;
}

.icon-bar {
    display: block;
    width: 30%;
    height: 3px;
    background: #aaa;
    transition: .3s;
    opacity: 0;
    margin-left: 80px;
    margin-top: 50px;
}

.icon-bar + .icon-bar {
    margin-top: 5px;
}

#nav-container:focus-within .button {
    pointer-events: none;
}

#nav-container:focus-within .icon-bar:nth-of-type(1) {
    transform: translate3d(0,8px,0) rotate(45deg);
    opacity: 1;
}

#nav-container:focus-within .icon-bar:nth-of-type(2) {
    opacity: 0;
}

#nav-container:focus-within .icon-bar:nth-of-type(3) {
    transform: translate3d(0,-8px,0) rotate(-45deg);
    opacity: 1;
}

#nav-container:focus-within .button-menu {
    opacity: 0;
}

#nav-content {
    margin-top: var(--nav-height);
    width: 90%;
    max-width: var(--menu-width);
    position: absolute;
    top: 0;
    left: calc(100% - var(--menu-width));
    background: #555;
    pointer-events: auto;
    transform: translateX(var(--menu-width));
    transition: transform .3s;
    will-change: transform;
    color: white;
}

#nav-content ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding-left: 20px;
}

#nav-content li a {
    font-size: clamp(1.4em, 1.4vw, 1.6vw);
    padding: 10px 5px;
    display: block;
    transition: color .1s;
    text-decoration: none;
    color: white;
}

#nav-content li a li a {
    font-size: clamp(1.2em, 1.2vw, 1.4vw);
    padding: 10px 5px;
    display: block;
    transition: color .1s;
    text-decoration: none;
    color: white;
}

#nav-content li a:hover {
    color: black;
}

#nav-container:focus-within #nav-content {
    transform: none;
}

.book-banner {
    display: flex;
    background-color: #555;
    width: 60%;
    color: white;
    font-size: clamp(2rem, 2vw, 2vw);
    margin: 20px auto 0px auto;
    text-align: center;
    justify-content: center;
    min-height: 100px;
    padding-top: 1vw;
    padding-bottom: 1vw;
    border-radius: 20px 20px 0px 0px;
}

.book-feature {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    flex-basis: 60%;
    margin: 0px auto 50px auto;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 0px 0px 20px 20px;
    font-size: clamp(1em, 1vw, 1vw);
    background-color: #B0B0B0;
}

.book-feature-wide {
    width: 60%;
}

.book-feature.follow {
    border-radius: 20px 20px 20px 20px;
}

.book-feature-img {
    /*	flex: 40%;*/
    margin: 20px;
    align-self: flex-start;
    flex-basis: 40%;
}

.book-feature-img img {
    width: 100%;
}

.book-feature-text {

    flex-basis: 50%;
    margin: 20px;
}

.book-feature-text a {
    color: white;
    text-decoration: none;
}

.book-feature-text a:hover {
    color: black;
}

.book-feature-poem {
    flex-basis: 100%;
    margin-bottom: 2em;
}

.fun-list {
    display: flex;
    justify-content: space-around;
    align-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 2em;
    row-gap: 2em;
}

.fun {
    flex-basis: 30;
    padding-top: 2em;
    text-align: center;
    color: white;
    font-size: clamp(2em, 2vw, 2vw);
}

.fun img {
    width: clamp(300px, 30vw, 500px);
    border-radius: 20px 20px 20px 20px;
}

.fun p {
    width: clamp(300px, 30vw, 500px);
}

.fun a {
    color: black;
    text-decoration: none;
}

.fun a:hover {
    color: #555;
}


.order-bar {
    font-family: sans-serif;
    width: 58%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content:space-evenly;
    margin: auto;
    padding-bottom: 40px;
}


.order-banner {
    font-size: clamp(1.2em, 1.2vw, 1.4vw);
    padding: 10px 2px 10px 2px;
    margin: 10px;
    flex-basis: 100%;
}

.order-entry {
    padding: 10px 20px 10px 20px;
    border-radius: 20px 20px 20px 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(57, 57, 57, 0.9);
    font-size: clamp(1em, 1vw, 1vw);
    color: white;
    margin: 0px 5px 5px -20px;
}

.order-entry:hover {
    background-color: rgba(57, 57, 57, 0.9);
}

.book-feature-text input {
    background-color: rgba(57, 57, 57, 0.9);
    color: white;
}

.book input {
    background-color: rgba(57, 57, 57, 0.9);
    color: white;
}

.book-wide input {
    background-color: rgba(57, 57, 57, 0.9);
    color: white;
}


.book-feature-text input:hover {
    background-color: rgba(117, 117, 117, 0.9);
    color:white;
}

.book input:hover {
    background-color: rgba(117, 117, 117, 0.9);
    color: white;
}

.book-wide input:hover {
    background-color: rgba(117, 117, 117, 0.9);
    color: white;
}


.order-entry a {
    text-decoration: none;
    color: white;
}

.order-entry a:active {
    text-decoration: none;
}

.order-entry-dark {
    padding: 10px 20px 10px 20px;
    border-radius: 20px 20px 20px 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(57, 57, 57, 0.9);
    font-size: clamp(1em, 1vw, 1vw);
    background-color: #999;
}

.order-entry-dark:hover {
    background-color: rgba(57, 57, 57, 0.9);
}

.order-entry-dark a {
    text-decoration: none;
    color: white;
}

.order-entry-dark a:active {
    text-decoration: none;
}

.entry-list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    column-gap: 10px;
    width: 60%;
    margin: 0px auto 50px auto;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 0px 0px 20px 20px;
    font-size: clamp(1em, 1vw, 1vw);
    background-color: #B0B0B0;
}

.entry-list h3 {
    margin: revert;
    margin-left: 20px;
    padding-bottom: 10px;
    color: white;
}

.entry {
    margin-left: 20px;
    padding-bottom: 10px;
}

.entry a {
    text-decoration: none;
    color: black;
    font-weight: bolder;
}

.entry a:hover {
    text-decoration: none;
    color: white
}

#mc_embed_signup {
}

#mc_embed_signup button {
    color: black;
    margin: 10px;
}

.signup-footer {
    width: 50%;
}

.signup-inline {
    margin: auto;
}

.tweets {
    width: 50%;
    margin: 40px auto 40px auto;
}

.iframe-container {
    margin-bottom: 50px;
}

#formContainer {
    margin: 50px auto 50px auto;
    flex-basis: 60%;
    text-align: center;
}

#formContainer table {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: white;
    font-size: clamp(1.2em, 1.2vw, 1.2vw);
}

input[type=submit] {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: clamp(1.2em, 1.2vw, 1.2vw);
    padding: 10px 20px 10px 20px;
    border-style: solid;
    border-color: black;
    border-width: 2px;
    border-radius: 5px;
}

#submit_button:hover {
    background-color: #D0D0D0;
}

.ibox {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: clamp(1.2em, 1.2vw, 1.2vw);
    width: 75%;
    height: 2em;
}

.tbox {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: clamp(1.2em, 1.2vw, 1.2vw);
    width: 75%;
    height: 6em;
}

.zoom-readings {
    font-size: clamp(1.4em, 1.4vw, 1.4vw);
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: clamp(700px, 80vw, 1000px);
    margin: auto;
}

.zoom-banner {
    background-color: #555;
    color: white;
    font-size: clamp(1.2rem, 1.2vw, 1.2vw);
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 1em 0 1em 0;
    border-radius: 20px 20px 0px 0px;
}

.zoom-reading {
    width: 100%;
    justify-content: center;
    margin: 0px auto 50px auto;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 0px 0px 20px 20px;
    font-size: clamp(1rem, 1vw, 1vw);
    padding: 1em 0 1em 0;
    text-align: center;
    background-color:#B0B0B0;
}

.zoom-reading-date {
    color: black;
    font-weight: bold;
    font-size: larger;
}

.zoom-reading-info {
    margin-top: 1em;
    color: black;
    font-weight: bold;
}


.zoom-reading.follow {
    border-radius: 20px 20px 20px 20px;
}


.zoom-reading a {
    color: black;
    text-decoration: underline solid #333 1pt;
}


.zoom-reading a:hover {
    color: white;
    text-decoration: underline;
}

.responsive {
    max-width: 80%;
}