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

.contact-section{
    background-color: #f6f6f4;
    padding: 50px 20px;
    text-align: center;
}

.contact-container h2{
    color: #0b0c10;
    margin-bottom: 10px;
}

.contact-container p{
    color: #7a7a7a;
    font-weight: bold;
    margin-bottom: 30px;
}
.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.contact-form{
    background-color: white;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.contact-form .form-group{
    margin-bottom: 15px;
}
.contact-form label{
    display: block;
    font-size: 16px;
    color: #0b0c10;
    margin-bottom: 5px;
}
.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 10px;
    resize: none;
    border: 2px solid #f4a261;
    border-radius: 5px;
    font-size: 14px;
    color: #dedede;
    background-color: #efefef;
}
.contact-form input:focus,
.contact-form textarea:focus{
    outline: none;
    border-color: #2a9d8f;
    background-color: white;
}
.submit-btn{
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #e76f51;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-btn:hover{
    background-color: #2a9d8f;
}
.contact-info{
    background-color: white;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.contact-info h3{
    font-size: 20px;
    color: #0b0c10;
    margin-bottom: 10px;
}
.contact-info p{
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 10px;
}
.social-links{
    margin-top: 20px;
}
.social-icon{
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2rem;
    color: #e76f51;
    text-decoration: none;
    transition: color 0.3s ease;
}
.social-icon:hover{
    color: #2a9d8f;
}

.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) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-container h2 {
        font-size: 2rem;
    }
}

@media(max-width: 480px) {
    .contact-section {
        padding: 30px 10px;
    }

    .contact-container h2 {
        font-size: 1.8rem;
    }

    .contact-form input,
    .contact-form textarea,
    .submit-btn {
        font-size: 1rem;
        padding: 12px;
    }
}