 * {padding: 0;margin: 0; box-sizing: border-box;}
body {background-color: rgba(187, 187, 5, 0.8);}
html{font-family:'Roboto', 'Open Sans';}
h1{ font-size:2.2rem; margin-bottom:10px;}

p{ font-size:1.3rem;}

/*Navbar section start*/
nav {
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 5%;
    background:#878704;
    box-shadow: 0 2px 10px rgb(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    }

    .logo {
        font-size: 25px;
        color: #333;
        text-decoration: none;
        font-weight: 600;
        }
    /*Navbar section Ends*/

.article {
padding:80px 5% 80px;
max-width:900px; 
margin:auto; 
line-height:1.6;
}

body img{
    width:50%;
    display:block;
    margin:20px auto;
    border-radius:6px;
}



/*Guide section start*/
.guides{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:40px;
padding:30px 9%;
max-width:1100px;
margin:auto;
}

.guide-card{
background:#fff;
border-radius:12px;
padding:25px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
text-align:center;
transition:transform 0.2s ease;
}

.guide-card img{
width:100%;
max-width:420px;
height:260px;
object-fit:cover;
border-radius:8px;
margin-bottom:20px;
}

.hero{
padding:120px 9% 40px;
text-align:center;
}



/* Button */

.btn{
display:inline-block;
margin-top:15px;
padding:12px 28px;
background:#6f8b1e;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:500;
transition:all 0.2s ease;
}

.btn:hover{
background:#556b16;
transform:scale(1.05);
}

/*Guide section end*/



/*Footer Sākas*/

#footer {
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    display: flex;
    justify-content: center;
    text-align: center;
}
.section-title{
    font-size: 4rem;
    font-weight: 300;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .2rem;
    text-align: center;
}
.section-title span {color: #BA1B18;}
#footer .footer {
    min-height: 200px;
    padding-top: 20px;
    padding-bottom: 10px;
}

#footer h2 {
    color: white;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: .1rem;
    margin-top: 5px;
    margin-bottom: 10px;
}

#footer .social-icon {
    margin-bottom: 10px;
}

#footer .social-item { 
    display: flex;
    justify-content: center;
    margin-left: 10px;
   
}

#footer .social-item img {
    filter: grayscale(1);
    transition: .3s ease filter;
}
#footer .social-item:hover img {
    filter: grayscale(0);
}


#footer p {
    color: white;
    
}

/*Footer beidzas*/  
