@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    border: none;
}

body {
    background-color: #f2fcf3;
    font-family: Roboto, sans-serif;
    color: #343534;
}

/* headers and paragraphs */

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.5rem;
}

h1, h2, h3 {
    font-family: "Noto Sans JP", sans-serif;
}

p {
    font-size: 1rem;
}

/* Navigation */

nav {
    background-color: #1D521D;
    width: 100%;
    height: 40px;
    line-height: 40px;
}

#navigation li {
    list-style: none;
    display:inline;
}

#navigation a {
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #f2fcf3;
    margin-left: 15px;
}

#navigation a:hover {
    color: red;
    text-decoration: underline;
}

/* Header */

header {
    background-color: #1D521D;
}

/* Title text */

#title-section {
    width: 100%;
    height: 600px;
    text-align: center;
    color: #f2fcf3;
    padding-top: 20px;
}

/* Home Page Hero image */

.home-hero {
    background-image: url(../images/lone-walker.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Routes Page Hero image */

.routes-hero {
    background-image: url(../images/walking-path.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Club Page Hero image */

.club-hero {
    background-image: url(../images/group-walking2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/* Footer and social media links */

footer {
    background-color: #1D521D;
    width: 100%;
    text-align: left;
}

.social {
    display: inline-block;
}

#social-media > li {
    display: inline;
    margin-left: 10px;
}

#social-media i {
    padding: 10px;
    font-size: 25px;
    color: #f2fcf3;
}

footer > p {
    color: #f2fcf3;
    margin-left: 15px;
}

/* Home page site introduction section */

#introduction {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 50px;
}

.intro-outer {
    display: inline-block;
}

.intro-sect {
    vertical-align: top;
    display: inline-block;
    width: 300px;
    padding: 20px;
    text-align: left;
}

.intro-sect p {
    text-align: justify;
}

.intro-sect > img {
    width: 100%;
}

/* Walk of the month */

#walk-of-month {
    width: 100%;
    text-align: center;
}

.walk-choice {
    height: 150px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px;
    padding: 20px;
}

.walk-choice img {
    height: 100%;
}

.choice-text {
    width: 40%;
    text-align: left;
}

.home-link {
    text-decoration: none;
    color: #343534;
}

.home-link:hover {
    text-decoration: underline;
    color: red;
}

/* Walking route pointers */

#route-intro {
    text-align: center;
}

#route-intro > h2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.route-pointer {
    background-color: rgba(197, 214, 207, 0.6);
    width: 450px;
    margin: 20px;
    border: 1px solid #343534;
    border-bottom: 3px solid #343534;
}

.route-pointer img {
    width: 100%;
}

.current {
    display: inline-block;
    vertical-align: top;
}

.current a {
    text-decoration: none;
    color: #343534;
}

.current a:hover {
    color: red;
    text-decoration: underline;
}

#route-intro h3 {
    margin-top: 25px;
}
.soon {
    display: inline-block;
    vertical-align: top;
}

/* Walking route pages */

#walks-page {
    text-align: center;
}

#walks-page > h2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.walks-info {
    width: 500px;
    display: inline-block;
    vertical-align: top;
    padding: 20px;
}

.walks-info > img {
    width: 100%;
}

.walks-info > h3 {
    text-align: left;
    padding-bottom: 5px;
}

.walks-info > p {
    text-align: justify;
}

.walks-info a {
    color: #343534;
}

.walks-info a:hover {
    color: red;
}

.walks-info > iframe {
    width: 100%;
    overflow: hidden;
}

/* Club page */

.club {
    text-align: center;
    margin-bottom: 20px;
}

.club > h2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

#club-intro {
    width: 700px;
    margin: 0 auto;
    text-align: justify;
    padding-top: 10px;
}

#club-dates {
    margin: 0 auto;
    text-align: left;
    width: 500px;
    padding-top: 10px;
}

td {
    padding-bottom: 10px;
    vertical-align: top;
}

form {
    width: 500px;
    background-color: #c5d6cf;
    border: 1px solid #343534;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

input {
    width: 100%;
    border: 1px solid #343534;
    height: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
}

textarea {
    box-sizing: border-box;
    max-width: 100%;
    border: 1px solid #343534;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 10px;
    font-family: Roboto, sans-serif;
}

button {
    border: 1px solid #343534;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    background-color: #1D521D;
    color: #f2fcf3;
    font-size: 100%;
}

button:hover {
    color: red;
}

/* Media queries */

/* For screens from 1390px wide and down */
@media screen and (max-width: 1390px){
    #group-pic {
        display: none;
    }
}

/* For screens from 1150px wide and down */
@media screen and (max-width: 1150px){
    .choice-text {
        width: 500px;
    }
}

/* For screens from 1100px wide and down */
@media screen and (max-width: 1100px){
    .walks-info {
        width: 70%;
    }
}

/* For screens from 1045px wide and down */
@media screen and (max-width: 1045px){
    #group-pic {
        display: inherit;
    }
}

/* For screens from 1005px wide and down */
@media screen and (max-width: 1005px){
    .route-pointer {
        width: 43%;
    }
}

/* For screens from 715px wide and down */
@media screen and (max-width: 715px){
    .walk-choice {
        width: 300px;
        height: auto;
    }

    .walk-choice img {
        width: 100%;
    }
}

/* For screens from 735px wide and down */
@media screen and (max-width: 735px){
    #club-intro {
        width: 95%;
    }

    #club-dates {
        width: 95%;
    }

    .club {
        width: 100%;
    }
}

/* For screens from 700px wide and down */
@media screen and (max-width: 700px){
    .route-pointer {
        width: 450px;
    }

    .walks-info {
        width: 80%;
    }

    #introduction {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .intro-sect {
        width: 80%;
    }

    .walk-choice {
        width: 80%;
        margin: 0;
    }

    .choice-text {
        margin-bottom: 10px;
    }
}

/* For screens from 600px wide and down */
@media screen and (max-width: 600px){
    .walks-info {
        width: 100%;
        padding: 20px 0 20px 0;
    }

    .walks-text {
        width: 95%;
    }

    .intro-sect {
        width: 100%;
        padding: 20px 0 20px 0;
    }

    .intro-text {
        width: 95%;
    }

    .walk-choice {
        width: 100%;
        padding: 20px 0 20px 0;
    }

    .choice-text {
       width: 95%;
    }

    #title-section h1 {
        font-size: 2rem;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    #title-section h2 {
        font-size: 1rem;
        padding-left: 5px;
        padding-right: 5px;
    }

    form {
        width: 85%;
    }
}

/* For screens from 500px wide and down */
@media screen and (max-width: 500px){
    .route-pointer {
        width: 95%;
        margin: 20px 0 20px 0;
    }
}

/* For screens from 400px wide and down */
@media screen and (max-width: 400px){
    #title-section h2 {
        display: none;
    }
}