@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;
	
}

html{
    scroll-behavior: smooth;
}
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;
    }
}

main{
    background-color: #f6f6f4;
}
.gallery-section{
    padding: 50px 20px;
}
.images-grid{
    display: grid;
    flex-direction: column;
    gap: 20px;

}
.gallery-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    background-color: white;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
}
.gallery-image-item{
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}
.gallery-image-item:hover{
    transform: scale(1.06);
}
.highlighted{
    box-shadow: 5px 5px 10px 15px rgba(233, 196, 106, 0.8);
    animation: highlight-animation 2s ease-out;
}
@keyframes highlight-animation{
    from {
        box-shadow: 6px 6px 18px 22px rgba(233, 196, 106, 0.9);
    }
    to {
        box-shadow: 4px 4px 12px 16px rgba(233, 196, 106, 0.5);
    }
}

.modal{
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.modal-content {
    max-width: 80%; 
    max-height: 80%;
    object-fit: contain;
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}
.nav{
    position: absolute;
    top: 50%;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    z-index: 1001;
}
.nav.prev{
    left: 20px;
}
.nav.next{
    right: 20px;
}

.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.8em;
    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) {
    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media(max-width: 768px) {
    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media(max-width: 480px) {
    .images-grid {
        grid-template-columns: 1fr;
    }
}