/*  =======================
    Background Images START
    ======================= */

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .bg-home {
        background-image: url(../img/timhill-saltburn-pier-5487835_1920.jpg);
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    .bg-sub {
        background-image: url(../img/jatocreate-beach-7436793_1920.jpg);
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

/*  =====================
    Background Images END
    ===================== */

/*  =================
    Font Styles Start
    ================= */

/* Import font styles from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&family=Prata&display=swap');

/* Font Classes for Website */

.prata-regular {
  font-family: "Prata", serif;
  font-weight: 400;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

/*  ===============
    Font Styles End
    =============== */

/*  =================
    Link Styles Start
    ================= */

    a{
        text-decoration: none;
        color: rgb(14, 155, 59);
    }

    a:hover {
        color: rgb(0, 123, 82);
    }

/*  ===============
    Link Styles End
    =============== */

/*  ================================
    Heading & Paragraph Styles Start
    ================================ */

    h1 {font-size: 6rem;}
    h2 {font-size: 5rem;}
    h3 {font-size: 4rem;}
    h4 {font-size: 3rem;}
    h5 {font-size: 2rem;}
    h6 {font-size: 1.6rem;}

    h1, h2, h3, h4, h5, h6 {
        font-family: "Prata", serif;
        font-weight: 400;
        font-style: normal;
        padding: 0;
        margin: 0;
        color: rgb(0, 0, 0);
    }
    
    p {
    font-family: "Prata", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.75;
    padding: 0;
    margin: 0 0 20px 0; 
    }

    hr {
        border-top: 1px solid rgb(0, 0, 0);
        border-width: 3px;
    }

/*  ==============================
    Heading & Paragraph Styles End
    ============================== */

/*  ===================
    Button Styles Start
    =================== */

    .action-btn {
        background-color: #000000;
        box-shadow: 0px 0px 3px 3px rgba(0, 0, 0.5);
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-decoration: none;
        font-size: 1.2rem;
        color: white;
        padding: 7px 17px 7px 17px;
        border: none;
        border-radius: 7px;
        cursor: pointer;
    }

    .action-btn:hover {
        background-color: rgb(214, 113, 4);
        color: white;
    }

/*  =================
    Button Styles End
    ================= */

/*  ===================
    Navbar Styles Start
    =================== */

    .nav-container {
        background-color: #000000;
        box-shadow: 0px 0px 10px 10px rgba(54, 36, 7, 0.4);
        font-size: 1.2rem;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
        height: 60px;
        width: 100%;
        position: sticky;
        top: 0;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 90%;
        max-width: 1200px;
        margin: auto;
    }

    .navbar ul {
        display: flex;
    }

    .nav-container .navbar {
        justify-content: space-between;
    }

    .navbar ul li {
        list-style-type: none;
    }

    .nav-container .navbar ul li {
        padding: 0px;
        margin: 0 20px;
    }

    .nav-container h6 {
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .navbar h2 {
        padding: 0px;
        margin: 0;
    }

    .navbar a {
        color: aliceblue;
        text-decoration: none;
    }

    .navbar a:hover {
        color: #a50000;
    }

    @media screen and (max-width: 787px) {
        .nav-container {
            height: auto;
        }

        .nav-container .navbar {
            flex-direction: column;        
        }
    }

/*  =================
    Navbar Styles End
    ================= */
/*  ===========================
    Page Style Containers Start
    =========================== */

    .homepage-container {
        background-color: rgb(255, 255, 255, 0.0);
        width: 90%;
        max-width: 1200;
        margin: auto;
        padding: 20px;
        text-align: center;
    }

    .homepage-container h1 {
        margin: 80px 0 -10px 0;
        color: aliceblue;
    }

    .homepage-container h5 {
        margin: auto;
        color: aliceblue;
    }

    .homepage-container p {
        color: aliceblue;
    }

    .subpage-container {
        background-color: rgb(255, 255, 255, 0.4);
        width: 90%;
        max-width: 1200;
        margin: auto;
        padding: 20px;
        text-align: center;
        flex-grow: 1;
    }

    .grid-container {
        display: flex;
        justify-content: center;
    }
    
    .grid-cards {
        display: grid;
        width: 100%;
        grid-gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .grid-card {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgb(0, 0, 0, 0.8);
        color: rgb(233, 157, 44);
        height: 100px;
        border-radius: 10px;
        font-size: 1.2rem;
    }

    .grid-cards a:hover {
        background-color: rgb(0, 0, 0, 0.6);
        color: #640202;
        border-radius: 10px;
    }

/*  =========================
    Page Style Containers End
    ========================= */

/*  =====================
    Subpage Content Start
    ===================== */

    .subpage-content {
        width: 80%;
        height: 100%;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
    }

    .photo {
        width: 90%;
        border-radius: 50px;
    }

    .subpage-content details {
        color: #e1d1d1;
        border: 1px solid #4b4b4b;
        border-radius: 10px;
        margin-bottom: 5px;
        background: rgb(88, 11, 11, 0.92);
    }

    .subpage-content summary {
        padding: 20px;
        font-weight: bold;
        font-size: 1.1rem;
        color: #e8e8e8;
        cursor: pointer;
        outline: none;
        list-style-type: none;
        align-items: center;
        text-align: center;
    }

    .sub-page-content summary::-webkit-details-marker {
        display: none;
    }

    .subpage-content summary:hover {
        background-color: rgb(88, 11, 11, 0.9);
        border-radius: 10px;
    }

    .subpage-content details p {
        padding: 7px;
        margin: 12x;
        line-height: 1;
        color: #e8e8e8;
    }

    .subpage-content h2 {
        font-size: 1.5rem;
        color: #2d2d2d;
        padding-bottom: 20px;
        margin-top: 1.5rem;
    }

    .subpage-content ul {
        list-style: none;
        padding-left: 0px;
    }

    .subpage-content li {
        background-color: rgb(88, 11, 11, 0.9);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 10px;
        line-height: 1.5;
        color: #dfd1d1;
    }

    .subpage-content li a {
        color: rgb(233, 157, 44);
        font-weight: bold;
        font-size: 1.1rem;
        text-decoration: none;

    }

    .subpage-content li a:hover {
        text-decoration: underline;
        color: rgb(255, 153, 0);
    }
/*  ===================
    Subpage Content End
    =================== */

/*  ==================
    Contact Form Start
    ================== */
    
    form {
        font-family: "Prata", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1rem;
        line-height: 1.75;
    }

    input[type=text], select {
        width: 100%;
        padding: 20px;
        margin: 10px 0px 20px 0px;
        display: inline-block;
        border: 1px solid #2d2d2d;
        border-radius: 7px;
        box-sizing: border-box;
        font-family: "Prata", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1rem;
        line-height: 1.75;
    }

    input[type=email] {
        width: 100%;
        padding: 20px;
        margin: 10px 0px 20px 0px;
        display: inline-block;
        border: 1px solid #2d2d2d;
        border-radius: 7px;
        box-sizing: border-box;
        font-family: "Prata", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1rem;
        line-height: 1.75;
    }

    textarea {
        width: 100%;
        height: 150px;
        padding: 20px;
        margin: 10px 0px 20px 0px;
        border: 1px solid #2d2d2d;
        border-radius: 7px;
        background-color: #dadada;
        resize: none;
        box-sizing: border-box;
        font-family: "Prata", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1rem;
        line-height: 1.75;
    }

     input[type=submit] {
        width: 100%;
        background-color: #a50000;
        box-shadow: 0px 0px 3px 3px rgb(0, 0, 0, 0.2);
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-decoration: none;
        font-size: 1.2rem;
        color: #FFFFFF;
        padding: 7px 17px 7px 17px;
        border: none;
        border-radius: 7px;
        cursor: pointer;
    }

    input[type=submit]:hover {
        background-color: #640202;
        color: #FFFFFF;
    }


/*  ================
    Contact Form End
    ================ */

/*  ======================
    Footer Container Start
    ====================== */

    .footer-container {
        background-color: rgb(0, 0, 0, 0.8);
        height: 40px;
        width: 100%;
        padding: 20px 0px 10px 0px;
    }

    .footer-content {
        text-align: center;
        color: aliceblue;
        font-size: 0.8rem;
        font-family: "Prata", serif;
        font-weight: 400;
        font-style: normal;
    }

/*  ====================
    Footer Container End
    ==================== */
