html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align: middle;
}

/* END CSS RESET * * * * * * * * * * * * * * * * END CSS RESET */
html, body {
    background-color: red;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
a:visited {
    color: white;
}
li {
    list-style-type: none;
}
.container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 50px auto auto;
    align-items: flex-start;
    background-image: linear-gradient(rgb(2, 121, 91) 0%, rgb(0, 88, 104) 15%, rgb(0, 16, 19));
    overflow-x: hidden;
    padding-bottom: 15px;
}
.cobia {
    position: absolute;
      top: 50%;
      left: -520px;
    opacity: 0.6;
    max-width: 507px;
    max-height: 199px;
    z-index: 1;
    animation: cobiaMove 1500ms linear forwards 1000ms;
}
.header-container {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    display: flex;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.5);
    background-color: rgb(0, 99, 116);
    z-index: 999;
}
.logo-top {
    position: relative;
    flex: 12;
    font-size: 24px;
    font-family: 'Kodchasan', sans-serif;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.99);
    padding: 15px 0 15px 10px;
}
.nav {
    flex: 16;
}
.nav-ul {
    display: flex;
    height: 100%;
    align-items: flex-end;
}
.nav-li:last-child {
    position: relative;
    text-align: right;
    padding: 5px 10px 20px 0;
}
.nav-li {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    padding-bottom: 10px;
    padding-top: 10px;
}
.nav-li > .active {
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.7), -1px -1px 5px rgba(255, 255, 255, 0.7);
}
.nav-a {
    font-family: 'Kodchasan', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}
.nav-a:hover:not(.hamburger) {
    color: rgba(255, 255, 255, 1);
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.7), -1px -1px 5px rgba(255, 255, 255, 0.7);
}
.hamburger {
    padding: 7px;
    font-size: 14px;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.99);
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: -2px 2px 5px rgba(255, 255, 255, 0.5);
}
.hamburger:hover {
    cursor: pointer;
    background-color: rgb(0, 147, 173);
}
.sub-nav-ul {
    position: absolute;
      top: 41px;
      right: -200px;
      box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.7);
}
.sub-nav-a {
    display: block;
    padding: 6px 25px 6px 25px;
    font-size: 18px;
    font-family: 'Kodchasan', sans-serif;
    color: rgb(255, 255, 255);
    text-align: right;
    background-color: rgb(89, 158, 152);
    z-index: 999;
}
.icon {
    width: 50px;
    height: auto;
}
.sub-nav > .active {
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.7), -1px -1px 5px rgba(255, 255, 255, 0.7);
}
.sub-nav-a:first-child {
    padding-top: 15px;
}
.sub-nav-a:last-child {
    padding-bottom: 15px;
}
.main-content {
    min-height: 1000px;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
    overflow-x: hidden;
}
.content-container {
    grid-row-start: 2;
    grid-row-end: 3;
}
.rotator-container, .content-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 997;
}
.image-container {
    position: relative;
    width: 90%;
    max-width: 640px;
    height: 67.5vw;
    max-height: 480px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.99);
    overflow: hidden;
    border-radius: 10px;
    z-index: 2;
}
.dots-container {
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
      bottom: 0;
      left: 50%;
    transform: translate(-50%, 0);
    z-index: 998;
    text-align: center;
    font-size: 45px;
    color: rgba(255, 255, 255, 0.4);
    cursor: context-menu;
}
.dots:hover {
    cursor: pointer;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.99);
}
.dots-container > .active {
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.99);
}
.images {
    width: 100%;
    height: 100%;
}
.cta-container  {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}
.cta-rates, .cta-book {
    flex: auto;
    max-width: 275px;
    display: block;
    margin: 20px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 10px white;
}
.cta-rates {
    background-color: rgb(0, 139, 69);
    z-index: 997;
}
.cta-rates:hover {
    background-color: rgb(0, 184, 92);
}
.cta-book {
    z-index: 997;
    background-color: rgb(0, 255, 76);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
.cta-book:hover {
    background-color: rgb(0, 182, 55);
}
.cta-rates-a {
    color: rgba(255, 255, 255, 0.9);
}
.cta-rates-a:hover {
    color: rgb(255, 255, 255);
    cursor: pointer;
}
.cta-book-a {
    color: rgba(0, 53, 16, 0.9);
}
.cta-book-a:hover {
    color: rgb(0, 53, 16);
    cursor: pointer;
}
.cta-rates-a:visited, .cta-book-a:visited {
    color: white;
}
.article-container {
    width: 90%;
    margin: 20px auto;
}
.article-h1, .rates-h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
    padding: 20px 10px;
    background-color: rgb(0, 61, 71);
    border-top: 2px solid rgb(0, 145, 170);
    border-left: 2px solid rgb(0, 145, 170);
    border-right: 2px solid rgb(0, 145, 170);
    color: white;
}
.article-h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    padding: 10px;
    color: rgb(212, 249, 255);
    background-color: rgb(0, 145, 170);
}
.scalloping-p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    padding: 10px;
    text-align: center;
    color: rgb(212, 249, 255);
    background-color: rgb(0, 145, 170);
}
#inSeason {
    background-color: rgb(238, 255, 0);
    font-weight: bold;
    font-size: 24px;
    padding: 10px;
}
#outSeason {
    background-color: rgb(255, 0, 0);
    font-weight: bold;
    font-size: 24px;
    padding: 10px;
}
.article-date {
    display: block;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: italic;
    padding: 10px;
    background-color: rgb(0, 171, 201);
    color: rgba(0, 0, 0, 0.281);
}
.licensed {
    display: block;
    text-align: center;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    padding: 10px;
    background-color: rgb(235, 219, 83);
    color: rgba(0, 0, 0, 0.733);
}
.article-p {
    margin-bottom: 20px;
    padding: 40px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 2px;
    background-color: rgb(140, 238, 255);
}
.footer-container {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
    padding-top: 20px;
    width: 100%;
    align-self: flex-end;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    font-family: 'Kodchasan', sans-serif;
    color: white;
}
.logo-bottom {
    margin: 0;
    flex: auto;
    font-size: 26px;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.99);
}
.sitemap-container {
    flex: auto;
    text-align: center;
}
.sitemap-item {
    display: inline-block;
    padding: 1vh 1vw;
    color: white;
}
.sitemap-item:hover {
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.7), -1px -1px 5px rgba(255, 255, 255, 0.7);
}
.sitemap-a {
    color: white;
}
.copyright, .deftoriginals {
    flex: auto;
    margin: 0;
    text-align: center;
    font-size: 12px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.4);
}
.deftoriginals:hover {
    color: white;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.7), -1px -1px 5px rgba(255, 255, 255, 0.7);

}
.to-top {
    display: block;
    position: fixed;
        bottom: 5px;
        right: 5px;
    font-family: 'Kodchasan', sans-serif;
    font-size: 28px;
    font-weight: bold;
    padding: 7px 12px;
    cursor: pointer;
    transition: 250ms;
    background-color: rgba(200, 255, 0, 0.01);
    color: rgba(0, 0, 0, 0.01);
    z-index: 9999;
}
.menu-in {
    animation: menu-in 500ms ease forwards;
}
.menu-out {
    animation: menu-out 500ms ease forwards;
}
.toTopFadeIn {
    animation: toTopFadeIn 750ms ease forwards;
}
.toTopFadeOut {
    animation: toTopFadeOut 750ms ease forwards;
}

/* ************************* FISHING ***************************** */

.title-container {
    width: 90%;
    margin: 20px auto;
}
.title-container-h1 {
    padding: 20px 0 20px 0;
    text-align: center;
    font-size: 36px;
    font-family: 'Kodchasan', sans-serif;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.99);
}
.rates-container {
    width: 90%;
    margin: 20px auto;
    font-family: 'Montserrat', sans-serif;
}
#fishingP {
    margin-bottom: 0px;
}
.rates-flex {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    text-align: center;
    background-color: rgb(126, 224, 241);
}
.rates-half, .rates-full {
    flex: auto;
    letter-spacing: 2px;
}
.rates-half {
    background-color: rgb(126, 224, 241);
}
.rates-full {
    background-color: rgb(82, 207, 230);
}
.rates-half-bold, .rates-full-bold {
    display: block;
    margin: 15px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.rates-full-normal, .rates-half-normal {
    display: block;
    margin: 15px;
    font-size: 18px;
}
.price {
    color: rgb(30, 255, 0);
    text-shadow: 0 0 5px rgb(6, 53, 0);
}
.book-question-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    letter-spacing: 2px;
    background-color: rgb(126, 224, 241);
}
.fishing-label, .scalloping-label, .full-label, .half-label {
    font-weight: bold;
    margin: 10px;
}
.images-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: rgb(126, 224, 241);
}
.item-container {
    overflow: hidden;
    position: relative;
    flex: auto;
    max-width: 250px;
    margin: 20px;
    background-color: white;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.item-label, .item-descrip {
    display: block;
    box-sizing: border-box;
    padding: 10px;
    margin: 0 auto;
    font-weight: bold;
    background-color: rgba(0, 132, 155, 0.8);
}
.item-label {
    white-space: nowrap;
    font-size: 20px;
}
.item-image {
    display: block;
    width: 100%;
}
.item-descrip {
    position: absolute;
    top: 100%;
    transform: translate(0, 0);
    display: block;
    width: 100%;
    height: 100px;
    font-size: 16px;
    font-weight: normal;
    opacity: 0.01;
    background-color: rgba(124, 235, 255, 0.8);
}
.the-boat {
    max-width: 250px;
    float: left;
    clear: left;
    margin-bottom: 10px;
    margin-right: 10px;
}
.descripDisplay {
    animation: descripDisplay 500ms ease forwards;
}
.descripHide {
    animation: descripHide 500ms ease forwards;
}

/* ************************* CONTACT ***************************** */

.contact-container {
    background-color: rgb(0, 145, 170);
    padding-bottom: 30px;
}
.contact-form * {
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    padding-bottom: 10px;
}
.form-section-top {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.form-section {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.button, .send-button {
    margin: 10px;
    padding: 10px;
    width: 175px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    background-color: rgb(184, 184, 184);
}
.button:hover, .send-button:hover {
    background-color: rgb(255, 255, 255);
    cursor: pointer;
}
.button-prompt {
    margin: 0;
    padding-top: 20px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}
.input {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 87%;
    max-width: 350px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    background-color: rgb(184, 184, 184);
}
.input:focus {
    box-shadow: 0 0 7px rgb(187, 255, 0);
    background-color: rgb(255, 255, 255);
}
.select {
    margin: 10px;
    padding: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    background-color: rgb(184, 184, 184);
}
.select:focus {
    box-shadow: 0 0 7px rgb(187, 255, 0);
    background-color: rgb(255, 255, 255);
}
.send-button {
    margin: 20px auto;
}
#timeframeSelect, #typeSelect, #inputSection, #dateSelect, #submitSection {
    display: none;
}

/* ***************** SCALLOPING ************************************** */

.scallop-img {
    max-width: 250px;
    margin: 20px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.gallerySizeUp {
    animation: gallerySizeUp 250ms ease forwards;
}
.gallerySizeDn {
    animation: gallerySizeDn 250ms ease forwards;
}


/* **************** MEDIA QUERIES & KEYFRAMES ************************* */

@keyframes cobiaMove {
    0% { left: -520px; max-width: 507px; max-height: 199px;}
    99% { left: 100%; max-width: 507px; max-height: 199px;}
    100% { left: 101%; max-width: 0px; max-height: 0px;}
}

@keyframes menu-in {
    from {background-color: rgba(255, 151, 151, 0); right: -200px;}
    to{background-color: rgba(255, 151, 151, 0.99); right: 0;}
}
@keyframes menu-out {
    from {background-color: rgba(255, 151, 151, 0.99); right: 0;}
    to{background-color: rgba(255, 151, 151, 0); right: -200px;}
}
@keyframes toTopFadeIn {
    from { color: rgba(0, 0, 0, 0.01); background-color: rgba(200, 255, 0, 0.01); }
    to { color: rgba(0, 0, 0, 0.99); background-color: rgba(200, 255, 0, 0.99); }
}
@keyframes toTopFadeOut {
    from { color: rgba(0, 0, 0, 0.99); background-color: rgba(200, 255, 0, 0.99); }
    to { color: rgba(0, 0, 0, 0.01); background-color: rgba(200, 255, 0, 0.01); }
}
@keyframes descripDisplay {
  0% { transform: translate(0, 0); opacity: 0.01; }
  100% { transform: translate(0, -100%); opacity: 0.99; }
}
@keyframes descripHide {
    0% { transform: translate(0, -100%); opacity: 0.99; }
    100% { transform: translate(0, 0); opacity: 0.01; }
}
@keyframes gallerySizeUp {
    from { max-width: 250px; }
    to { max-width: 90%; }
}
@keyframes gallerySizeDn {
    from { max-width: 90%; }
    to { max-width: 250px; }
}

@media screen and (max-width: 600px) {
    .hide-mobile {
        display: none;
    }
    .logo-top {
        flex: 3;
        font-size: 22px;
    }
    .nav {
        flex: 1;
    }
}
@media screen and (min-width: 600px) {
    .hide-desktop {
        display: none;
    }
    .nav-a {
        font-size: 15px;
    }
}
@media screen and (min-width: 750px) {
    .logo-top {
        flex: 17;
    }
    .logo-bottom {
        text-align: left;
        padding-left: 50px;
    }
    .copyright {
        text-align: center;
    }
    .sitemap-container {
        text-align: right;
        padding-right: 50px;
    }
    .nav {
        flex: 36;
    }
    .nav-a {
        font-size: 18px;
    }
}
