* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

body a {
    text-decoration: none;
}

* {
    cursor: url("../../media/img/logo-&-nav/cursor.png") 0 0, auto;
}

html {
    font-size: 16px;
}





/* FONTS */

/* PAGE HEADERS */
h1 {
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    /* font-size: 120pt; */
    font-size: 10rem;
    color: #2C1400;
}

/* TEXT BOX HEADERS */
h2 {
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    /* font-size: 60pt; */
    font-size: 5rem;
    color: #2C1400;
}

/* HOME NAV BOX HEADERS */
h3 {
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    /* font-size: 40pt; */
    font-size: 3.3rem;
    color: #2C1400;
}

/* CARD HEADERS */
h4 {
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    /* font-size: 28pt; */
    font-size: 2.3rem;
    color: #2C1400;
    text-transform: uppercase;
}

/* UNDER HEADER SUB HEADERS */
h5 {
    font-family: "museomoderno", sans-serif;
    font-weight: 500;
    font-style: normal;
    /* font-size: 24pt; */
    font-size: 2rem;
    color: #2C1400;
}

/* BUTTONS */
h6 {
    font-family: "museomoderno", sans-serif;
    font-weight: 500;
    font-style: normal;
    /* font-size: 24pt; */
    font-size: 2rem;
    color: #2C1400;
}

/* BODY TEXT */
p {
    font-family: "museomoderno", sans-serif;
    font-weight: 300;
    font-style: normal;
    /* font-size: 18pt; */
    font-size: 1.5rem;
    color: #2C1400;
}

/* FOOTER LINKS */

ul {
    font-family: "museomoderno", sans-serif;
    font-weight: 500;
    font-style: normal;
    /* font-size: 12pt; */
    font-size: 1rem;
    color: #2C1400;
}




/* COLOURS */

/* body {
background-color: #FDF6E6;
background-color: #FFEAD5;
background-color: #EBCAA8;
background-color: #C59E76;
background-color: #F1D4B6;

background-color: #2C1400;
background-color: #371B05;
background-color: #562914;
background-color: #84472A;

background-color: #FFE6BB;
background-color: #FFBF53;

background-color: #FFD5C5;
background-color: #F99872;

background-color: #FFD1E4;
background-color: #FF6CB4;

background-color: #F3DCFF;
background-color: #B175D1;

background-color: #D5F2F8;
background-color: #4AABBE;

background-color: #E9E1A5;
background-color: #A09754;
} */



















/* NAVIGATION */

nav {
    height: 100px;
    width: 100%;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    background-color: rgba(86, 41, 20, 0);
    /* <-- ADD THIS */
}


.nav-button {
    height: 60px;
    width: 200px;
    background-color: #f1d4b6;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 10000;
}

.nav-button img {
    height: 100%;
}

.nav-logo {
    height: 60px;
    width: 200px;
    background-color: #f1d4b6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10000;
}

.nav-logo img {
    height: 100%;
}

.nav-button,
.nav-logo {
    border-radius: 20px;
    border-color: #562914;
    border-width: 3px;
    border-style: solid;
    box-shadow: 5px 5px 0px rgba(86, 41, 20, 0.8);
}

.home-page .nav-logo {
    visibility: hidden;
}

.nav-button:hover,
.nav-logo:hover {
    transform: scale(1.05);
}




/* NAVIGATION OPEN */

.nav-open {
    width: 100%;
}

.nav-open-content {
    width: 60%;
    background-color: #FDF6E6;
    border-radius: 20px;
    border-style: solid;
    border-width: 5px;
    border-color: #562914;
    box-shadow: 10px 10px 0px rgba(86, 41, 20, 1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    right: 60px;
    top: 100px;
    position: absolute;
    z-index: 888;
    gap: 20px;
}

.nav-r-one,
.nav-r-two,
.nav-r-three {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* ROW ONE */

.nav-home {
    width: 50%;
    background-color: #d5f2f8;
    border-color: #002f36;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 30px;
}

.nav-home h3 {
    padding-bottom: 8px;
    color: #002f36;
}

.nav-home:hover {
    transform: scale(1.02);
}

.nav-about {
    width: 50%;
    background-color: #E9E1A5;
    border-color: #4B5320;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 30px;
}

.nav-about h3 {
    padding-bottom: 8px;
    color: #4B5320;
}

.nav-about:hover {
    transform: scale(1.02);
}

/* ROW TWO */

.nav-port {
    width: 100%;
    background-color: #ffd1e4;
    border-color: #A90C51;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 20px;
}

.nav-port h3 {
    padding-bottom: 24px;
    color: #A90C51;
    font-size: 70pt;
}

.nav-port:hover {
    transform: scale(1.02);
}

/* ROW THREE */


.nav-con {
    width: 35%;
    background-color: #ffd9ca;
    border-color: #AF340B;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 10px;
}

.nav-con h3 {
    padding-bottom: 8px;
    color: #AF340B;
}

.nav-con:hover {
    transform: scale(1.02);
}

.nav-bus {
    width: 65%;
    background-color: #f3dcff;
    border-color: #430A60;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 10px;
}

.nav-bus h3 {
    padding-bottom: 8px;
    color: #430A60;
}

.nav-bus:hover {
    transform: scale(1.02);
}


/* open/close */

/* NAV CLOSED BY DEFAULT */
.nav-open {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* NAV OPEN WHEN VISIBLE CLASS ADDED */
.nav-open.visible {
    opacity: 1;
    pointer-events: auto;
}

/* BUTTON DEFAULT */
.nav-button {
    transition: background-color 0.3s ease;
    cursor: pointer;
}

/* BUTTON WHEN NAV IS OPEN */
.nav-button.active {
    background-color: #fdf6e6;
}

.nav-button img {
    pointer-events: none;
}



















/* GERTRUDE */

/* HEAD */

.gertrude-head {
    width: 100%;
    position: absolute;
    margin-top: -50px;
}

.gertrude-head-img {
    width: 100%;
}

.gertrude-head-img img {
    width: 100%;
}





/* CONTENT */

.gertrude-content {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 20%;
    padding-bottom: 40%;
    background-image: url(../../media/img/backgrounds/beige-stars.png);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    gap: 10vh;
}

.gertrude-left {
    width: 45%;
    height: 100%;
    min-height: 400px;
    max-height: 1200px;
}

.gertrude-left img {
    width: 100%;
    border-radius: 20px;
    border-style: solid;
    border-width: 5px;
    border-color: #562914;
    box-shadow: 10px 10px 0px rgba(86, 41, 20, 0.8);
}

.gertrude-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.shop h5 {
    background-color: #ffd1e4;
    text-align: center;
    border-color: #562914;
    box-shadow: 10px 10px 0px rgba(86, 41, 20, 0.8);
    border-radius: 15px;
    border-width: 5px;
    border-style: solid;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 60px;
}

.shop:hover {
    transform: scale(1.1);
}

.gertrude-single-img {
    width: 33.33%;
}

.gertrude-single-img img {
    width: 100%;
    border-color: #562914;
    box-shadow: 10px 10px 0px rgba(86, 41, 20, 0.8);
    border-radius: 15px;
    border-width: 5px;
    border-style: solid;
}

.gertrude-double-img {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    gap: 4vh;
}

.gertrude-double-img img {
    width: 100%;
    border-color: #562914;
    box-shadow: 10px 10px 0px rgba(86, 41, 20, 0.8);
    border-radius: 15px;
    border-width: 5px;
    border-style: solid;
}

.blurb-card {
    width: 100%;
    /* height: 400px; */
    background-color: #FDF6E6;
    border-radius: 20px;
    border-style: solid;
    border-width: 5px;
    border-color: #562914;
    box-shadow: 10px 10px 0px rgba(86, 41, 20, 0.8);
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.blurb-card h3 {
    padding-bottom: 15px;
    padding-top: 15px;
}

.blurb-card h2 {
    padding-bottom: 15px;
}

.blurb-card p {
    padding-left: 10px;
    padding-right: 10px;
}

.blurb-card h5 {
    padding-top: 20px;
    /* font-size: ; */
}



/* ROW PARENTs */
.row-one {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 4vw;
}

.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 4vw;
}



















/* ABOUT FOOTER */

.footer {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: -500px;
}

.footer-imgs {
    width: 100%;
}

.footer-imgs img {
    width: 100%;
}

.bottom-links ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    color: #fdf6e6;
    background-color: #252B07;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 120px;
    padding-right: 120px;
    margin-top: -10px;
    text-transform: uppercase;
}













/* TOP BUTTON */

#back-to-top {
    display: none;
    bottom: 75px;
    right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #f3dcff;
    border-style: solid;
    border-radius: 10px;
    border-width: 3px;
    border-color: #723194;
    box-shadow: 5px 5px 0px rgba(114, 49, 148, 0.8);
    text-align: center;
    position: fixed;
    z-index: 9999;
    transition: transform 0.2s ease;
    font-family: "museomoderno", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16pt;
    color: #2C1400;
    transition: transform 0.3s ease-in-out;
}

#back-to-top.show {
    display: block;
    opacity: 1;
}

#back-to-top:hover {
    transform: scale(1.05);
}

















/* MEDIA QUERIES 991 */

@media only screen and (max-width: 992px) {

    .row-one {
        flex-direction: column;
        gap: 10vh;
        display: flex;
        align-items: center;
    }

    .gertrude-left {
        width: 50%;
    }

    .gertrude-right {
        width: 80%;
    }

    .blurb-card p {
        font-size: 16pt;
    }

    .gertrude-content {
        padding-bottom: 40%;
    }

    .footer {
        margin-top: -40%;
    }

    .bottom-links ul {
        display: flex;
        flex-wrap: wrap;
        padding-left: 80px;
        padding-right: 200px;
        gap: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}