*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:white;
    font-family:Arial, Helvetica, sans-serif;
}

.hero{
    height:100vh;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("../img/hero.jpg");

    background-size:cover;
    background-position:center top;

    display:flex;
    align-items:center;
}

.hero-content{
    position:relative;
    z-index:1;
}

.content{
    max-width:700px;
    padding:60px;

    text-align:center;
}

.top-nav{
    position:absolute;
    top:30px;
    right:40px;

    display:flex;
    gap:30px;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-logo img{
    height:60px;
}

.top-nav a{
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.9rem;

    border-bottom:2px solid transparent;

    transition:.3s;
}

.top-nav a:hover{
    border-bottom:2px solid #d40000;
}

.logo{
    width:320px;
    max-width:90%;
}

h1{
    font-size:4rem;
    font-family:"Cinzel",serif;
    text-transform:uppercase;
    line-height:1.05;
}

.line{
    width:380px;
    max-width:90%;

    height:3px;
    background:#d40000;

    margin:25px auto;
}

.slogan{
    font-size:1.4rem;
    letter-spacing:4px;

    color:#ddd;
}

.contact{
    margin-top:40px;
    text-align:center;
}

.contact div{
    margin-bottom:15px;
    font-size:1.4rem;
}

.contact i{
    color:#d40000;
    margin-right:10px;
}

.contact a,
.contact a:visited{
    color:#fff;
    text-decoration:none;
}

.contact a:hover{
    color:#ff2b2b;
}

.social{
    margin-top:40px;

    display:flex;
    justify-content:center;

    gap:20px;
}

.social a{
    width:60px;
    height:60px;

    border:2px solid #d40000;

    border-radius:12px;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    text-decoration:none;

    font-size:28px;

    transition:.3s;
}

.social a:hover{
    background:#d40000;
}

footer{
    text-align:center;
    padding:20px;
    background:#000;
    color:#999;
}

footer a{
    color:#ccc;
    text-decoration:none;
}

footer a:hover{
    color:white;
}

.services{
    background:#050505;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;

    padding:80px 30px;
}

.box{
    text-align:center;
}

.box h2{
    color:#fff;
    margin-bottom:15px;
}

.box p{
    color:#bbb;
    line-height:1.5;
}

@media (max-width:768px){

    .hero{
        height:auto;
        min-height:100vh;
        padding:20px;
    }
 
    .top-nav{
        gap:15px;
    }

    .top-nav a{
        font-size:.8rem;
        letter-spacing:1px;
    }

    .content{
        width:100%;
        max-width:100%;
        padding:20px;
    }

    .logo{
        width:220px;
        max-width:100%;
    }

    h1{
        font-size:2.2rem;
    }

    .line{
        width:80%;
    }

    .slogan{
        font-size:1rem;
        letter-spacing:1px;
    }

    .social{
        gap:10px;
        flex-wrap:wrap;
    }

    .services{
        grid-template-columns:1fr;
        padding:30px 20px;
    }

    .news-content{
        grid-template-columns:1fr;
    }
}

.page-header{
    background:#050505;
    padding:80px 40px 40px;
    text-align:center;
}

.page-header h1{
    font-family:"Cinzel",serif;
    font-size:3rem;
    color:#fff;
}

.news{
    max-width:1200px;
    margin:0 auto;
    padding:60px 30px;

    display:grid;
    gap:30px;
}

.news-item{
    max-width:1000px;
    width:100%;
    margin-top:50px;
    background:#111;
    border:1px solid #222;
    border-radius:12px;
    padding:40px;
}

.news-item{
    margin-left:auto;
    margin-right:auto;
}

.news-item h2{
    color:#fff;
    margin-bottom:15px;
}

.news-item p{
    color:#bbb;
    line-height:1.6;
}

.news-item a{
    color:#d40000;
    text-decoration:none;
    font-weight:600;
}

.news-item a:hover{
    color:#ff2b2b;
}

.news-date{
    color:#d40000;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:12px;
}

.news-content{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    align-items:start;
}

.news-image img{
    width:100%;
    border-radius:10px;
    display:block;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    padding:60px;
}

.gallery img{
    width:100%;
    height:300px;
    object-fit:cover;
}

html,
body{
    overflow-x:hidden;
}

.share-section{
    margin-top:40px;
    text-align:center;
}

.share-btn{
    background:#d40000;
    color:#fff;

    border:none;
    border-radius:8px;

    padding:12px 24px;

    font-size:1rem;
    font-weight:600;

    cursor:pointer;

    transition:.2s;
}

.share-btn:hover{
    background:#ff2b2b;
}

.article-actions{
    margin-top:40px;

    display:flex;
    justify-content:center;
    gap:15px;

    flex-wrap:wrap;
}

.follow-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#1877f2;

    color:#fff;
    text-decoration:none;

    padding:12px 24px;

    border-radius:8px;

    font-weight:600;

    transition:.2s;
}

.follow-btn:hover{
    background:#2d88ff;
}

main{
    padding-top: 40px;
}



