@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	
}

h1{
    font-family: 'Playfair Display';
    font-size: 2.6rem;
}
h2{
    font-family: 'Merriweather';
    font-size: 2.5rem;
} 
h3{
    font-family: 'Merriweather';
    font-size: 1.5rem;
}
p{
    font-family: 'Lora';
    font-size: 1.2rem;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #0b0c10;
    height: 110px;
}
.logo{
    margin-left: 80px;
    display: flex;
    align-items: center;
}
.logo img{
    max-height: 105px;
    width: 110px;
}
.nav-links{
    list-style-type: none;
    display: flex;
    margin-right: 40px;
    padding: 0;
}
.nav-item{
    margin: 5px;
}
.link{
    text-decoration: none;
    color: #f6f6f4;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 15px;
    font-size: 20px;
}
.link:hover{
    color: #0b0c10;
    background-color: #f4a261;
    box-shadow: 0 0 0 2px #e9c46a;
}
.active{
    border-bottom: 5px solid #f4a261;
}
@media(max-width: 768px){
    header{
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    .nav-links{
        margin-top: 10px;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .nav-item{
        margin: 5px 0;
    }
}

.news-section{
    max-width: 1000px;
    margin: 0px auto;
    padding: 20px;
    padding-top: 40px;
}
.news-section h1{
    text-align: center;
    font-size: 2.5rem;
    color: #e76f51;
    margin-bottom: 20px;
}
.intro-text{
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #0b0c10;
    font-weight: bold;
}
.news-article{
    margin-bottom: 50px;
}
.article-content{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}
.article-content.reverse-layout{
    flex-direction: row-reverse;
}
.article-image{
    width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
}
.text-content{
    width: 55%;
}
.text-content h2{
    font-size: 1.8rem;
    color: #e76f51;
    margin-bottom: 15px;
}
.text-content p{
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #0b0c10;
    text-align: justify;
}
.footer{
    background-color: #0b0c10;
    color: #f6f6f6;
    padding: 40px 20px;
    text-align: center;
}
.footer-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align
}
.footer-logo{
    margin-left: 80px;
    display: flex;
    align-items: center;
}
.footer-logo img{
    max-height: 105px;
    width: 110px;
}
.footer-nav ul{
    list-style: none;
    padding: 0;
}
.footer-nav ul li{
    margin: 5px 0;
}
.footer-nav ul li a{
    color: #f6f6f6;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-nav ul li a:hover{
    color: #f4a261;
    text-decoration: underline;
}
.footer-contact p{
    margin: 5px 0;
    font-size: 0.9rem;
}
.footer-social a img{
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}
.footer-social a:hover img{
    transform: scale(1.1);
}
.footer-legal{
    font-size: 0.8rem;
    color: #a8a8a8;
}
.footer-legal p{
    font-size: 0.8rem;
}
.footer-legal a{
    color: #a8a8a8;
    text-decoration: none;
}
.footer-legal a:hover{
    color: #f6f6f6;
}

@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-nav {
        margin-bottom: 20px;
    }

    .footer-social {
        margin-bottom: 20px;
    }

    .footer-contact {
        margin-bottom: 20px;
    }

    .footer-nav ul li {
        font-size: 1rem;
    }

    .footer-legal {
        font-size: 0.9rem;
    }

    .footer-social a img {
        width: 40px;
    }
}

@media(max-width: 480px) {
    .footer-logo img {
        max-height: 80px;
    }

    .footer-nav ul li {
        font-size: 1.2rem;
    }

    .footer-legal p {
        font-size: 0.8rem;
    }

    .footer-contact p {
        font-size: 0.8rem;
    }
}

@media(max-width: 1024px) {
    .article-content {
        flex-direction: row;
    }

    .article-image {
        width: 40%;
    }

    .text-content h2 {
        font-size: 1.6rem;
    }

    .text-content p {
        font-size: 1rem;
    }
}

@media(max-width: 768px) {
    .article-content {
        flex-direction: column;
    }

    .article-image {
        width: 100%;
        height: auto;
    }

    .text-content {
        width: 100%;
        padding-top: 20px;
    }

    .text-content h2 {
        font-size: 1.4rem;
    }

    .text-content p {
        font-size: 0.95rem;
    }
}

@media(max-width: 480px) {
    .article-content {
        padding: 15px;
    }

    .article-image {
        width: 100%;
        height: auto;
    }

    .text-content h2 {
        font-size: 1.2rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }
}