/*Colors:
1.	Deep Sky Blue – #2A9DF4 (headings, accents)
2.	Warm Sand Beige – #F2E6D8 (backgrounds)
3.	Forest Green – #2E5E3A (buttons, highlights)
4.	Charcoal Gray – #2F2F2F (body text)
*/

/*↓↓↓ Fonts(Poppins, Montserrat, Raleway, Quicksand) ↓↓↓*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


body {
    background-color: #F2E6D8;
    color: #2F2F2F;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #2A9DF4;
    font-weight: 700;
}

a {
    color: #2A9DF4;
    text-decoration: none;
}

a:hover {
    color: #2E5E3A;
    text-decoration: underline;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: #2F2F2F;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
    height: 40px;
    width: auto;
}

header a:first-of-type {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5em;
    color: #F2E6D8;
    padding-right: 20px;
}

nav a {
    color: #F2E6D8;
    font-family: 'Poppins', sans-serif;
    padding: 0 10px;
    transition: color 0.3s;
}

nav a:hover {
    color: #2A9DF4;
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 5%;
}

.title_card {
    display: grid;
    grid-template-columns: 3;
    gap: 20px;
}

#welcome_msg {
    grid-column: 2/3;
}

#title_picture {
    grid-column: 1/2;
    padding: 20px;
    max-width: 80%;
    max-height: 80%;
}

#title_intro {
    padding: 20px;
    margin-top: 20px;
}

.recentAdventures {
    display: grid;
    grid-template-columns: 3;
}

#reHeading {
    grid-column: 1/2;
}

#yellowstone {
    grid-column: 1/2;
    grid-row: 2;
    max-width: 50%;
    max-height: 50%;
}

#dgHeading {
    grid-column: 1/2;
    grid-row: 3;
}
#dgp1 {
    grid-column: 1/2;
    grid-row: 4;
    text-align: center;
}
#nationalPark1{
    grid-column: 2/3;
}
#ttHeading {
    grid-column: 2/3;
    grid-row: 3;
}

#ttp {
    grid-column: 2/3;
    grid-row: 4;
    text-align: center;
}