body{
    margin:0;
    padding:0;
    font-family:Helvetica;
    line-height: 1.5em;
}

#site_wrap{
    background-color: white;
    height:200vh;
    display: grid;
    grid-template-columns: 
        1fr 
       repeat(4,minmax(0,272px))
        1fr
    ;
    grid-gap:5px; 
    grid-template-rows:
        137px
        206px
        min-content
        min-content
        1fr
    ;
    grid-template-areas:
        "header header header header header header"
        "featured_header featured_header featured_header featured_header featured_header featured_header"
        "featured_main featured_main featured_main featured_main featured_main featured_profile "
        "content content content content content content"
        "footer footer footer footer footer footer"
}

.header{
    background-color: Gray;
    grid-area:header;
    display:flex;
    align-items: center;
    justify-content:  space-between;
    
}
.header .logo{
    width: 131px
    
}
.header .nav{
    list-style: none;
    padding: 0;
    display: flex
}
.header .nav a{
    text-decoration: none;
    border: 2px solid #000034;
    border-radius: 50em;
    color: #49D8A0;
    padding: 12px 48px;
    margin: 0 10px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}

.header .nav a:hover, .header .nav .active{
    background-color: #49D8A0;
    color:#000034;
    
}
.featured_header{
    background-image:url(Images/kamil-pietrzak-H22w-tq0SeQ-unsplash.png);
    grid-area:featured_header;
    background-size: cover;
}
.featured_main{
    grid-area:featured_main;
}
.featured_main h1{
    color: #707070;
}
.featured_main p{
    color: #707070;
}

.btn{
    text-decoration: none;
    background-color: #000034;
    border: 2px solid #49D8A0;
    border-radius: 50em;
    color: #49D8A0;
    padding: 12px 48px;
    margin: 0 10px;
    text-transform: uppercase;
    font-weight: bold;
    float: right;
    
}

.featured_profile{
    padding: 2m 1m;
    grid-area:featured_profile;
}
.content{
    grid-area:content;
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
}
.content img{
    flex: 1 1 calc(25% - 10px);
    max-width: 75%;
    height: auto;
    object-fit: cover;
}
.footer{
    background-color: #6C6C6C;
    color: white;
    text-align: center;
    padding-top: 2em;
    grid-area:footer;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.5;
    background-color: white;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: gray;
}

.header .nav {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.header .nav a {
    text-decoration: none;
    border: 2px solid #000034;
    border-radius: 50em;
    color: #49D8A0;
    padding: 0.5rem 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.header .nav a:hover,
.header .nav .active {
    background-color: #49D8A0;
    color: #000034;
}


.hero {
    width: 100%;
    height: 40vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text About */
.about_text {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.about_text h1 {
    color: black;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.about_text p {
    color: darkslategray;
    font-weight: lighter;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Button */
.btn {
    display: inline-block;
    text-decoration: none;
    background-color: #000034;
    border: 2px solid #49D8A0;
    border-radius: 50em;
    color: #49D8A0;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #6C6C6C;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/*BLOG*/
#site_wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}


.Blog_featured_header {
    width: 100%;
    height: 20vh;
    overflow: hidden;
    position:relative
}

.Blog_featured_header img{
width: 100%;
height: 100%;
object-fit: cover;     
object-position: center;
}    


.Blog_featured_main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.Blog_featured_main h1 {
    color: black;
    font-weight: bold;
    font-size: 2.5rem; 
}

.Blog_featured_main p {
    color: darkslategray;
    font-weight: lighter;
    font-size: 1.2rem;
    line-height: 1.6;
}


.Blog_featured_profile {
    margin: 2rem auto;
    text-align: center;
}

.Blog_featured_profile img {
    max-width: 300px;
    width: 100%;
    border-radius: 50%;
}

/* Footer */
.Blog_footer {
    margin-top: auto; 
    background-color: #6C6C6C;
    color: white;
    text-align: center;
    padding: 2rem 0;
}
.Blog_page #site_wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}


.Blog_footer {
    margin-top: auto;
    background-color: #6C6C6C;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.Contact_featured_main h1,h2{
    text-align: center;
    font-size: 30pt;
    font-family:Georgia,times new roman, sans-serif;
}
.Contact_featured_main h2{
    margin-bottom: 1pt;
}


.Contact_featured_main p{
    text-align: center;
    font-size: 15pt;
    font-family: franklin gothic medium,arial,georgia;
    margin-top: 1pt;
}

/*SIGN UP*/

.Sign_featured_main {
    background-color: white;
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.Sign_featured_main h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.Sign_featured_main label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.Sign_featured_main input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.Sign_featured_main button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background-color: #000034;
    color: #49D8A0;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.Sign_featured_main button:hover {
    background-color: #49D8A0;
    color: #000034;
}
/* Responsive */
@media screen and (max-width: 480px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header .nav {
        flex-direction: column;
        width: 100%;
    }

    .header .nav a {
        margin: 0.25rem 0;
    }

    .about_text {
        padding: 0 1rem;
    }
}


@media screen and (max-width: 480px) {
    #site_wrap {
        grid-template-rows:
            137px
            206px
            min-content
            min-content
            1fr;
        grid-template-areas:
            ". header header header header ."
            "featured_header featured_header featured_header featured_header featured_header featured_header"
            "featured_main featured_main featured_main featured_main featured_main"
            "content content content content content content"
            "footer footer footer footer footer footer";
}
    .featured_profile{
        display:none;
}    
.header .nav{
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction:column;
}
.header .nav a{
    margin: .5em;
}
.content{    
    flex-direction: column;
}
}   
