@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;
    }
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: calc(80vh - 80px); 
    background-image: url('images/living_room.jpg');
    background-size: cover;
    background-position: center;
    color: #f6f6f4;
    padding: 20px;
}
main .section-heading2{
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}
.about-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    background-color: #f6f6f4;
}
.about-container{
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.about-text{
    flex: 1 1 50%;
    text-align: center;
    padding: 20px;
}
.button-about-more{
    display: inline-block;
    margin-top: 20px;
    padding: 12px 22px;
    background-color: #19305c;
    color: white;
    font-family: 'Montserrat';
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.5em;
    transition: background-color 0.3s ease;
}
.button-about-more:hover{
    background-color: #e76f51;
    box-shadow: 0 0 0 2px #03122f;
}
.about-text h2{
    color: #0b0c10;
    margin-bottom: 30px;
}
.about-text h3{
    color: #0b0c10;
}
.about-text p{
    line-height: 1.5;
    color: white;
    font-weight: bold;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 20px;
    background-color: #19305c;
    padding: 10px;
    border-radius: 12px;
}
.about-images-container{
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}
.about-images{
    flex: 1 1 50%;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-img{
    width: 45%;
    height: auto;
    border-raduis: 8px;
    box shadow: 2 6px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.about-team{
    width: 45%;
    height: auto;
    border-raduis: 8px;
    box shadow: 2 6px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.about-img:hover{
    transform: scale(1.05);
}
.about-team:hover{
    transform: scale(1.05);
}
.services-section{
    background: #f6f6f4;
    text-align: center;
    padding: 40px 20px;
}
.services-section h2{
    color: #0b0c10;
    margin-bottom: 30px;
    font-weight: bold;
}
.services-conatiner{
    max-width: 1200px;
    margin: 0 auto;
}
.services-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.service-item{
    background: #f4a261;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.5s ease;
}
.service-item:hover{
    transform: scale(1.05);
    box-shadow: 2px 8px 12px rgba(0, 0, 0, 0.20);
}
.service-icon{
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}
.service-item h3{
    color: white;
    margin-bottom: 10px;
}
.service-item p{
    font-size: 1rem;
    color: black;
    font-weight: 550;
    line-height: 1.6;
}
.button-services{
    display: inline-block;
    padding: 10px 20px;
    background-color: #e76f51;
    color: black;
    text-decoration: none;
    font-family: 'Montserrat';
    font-weight: bold;
    border-radius: 6px;
    font-size: 1rem;
    box-shadow: 2px 8px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}
.button-services:hover{
    background: #19305c;
    color: white;
}
.portfolio-section{
    background-color: #1b1b1b; 
    color: #f6f6f4; 
    padding: 50px 20px;
}
.portfolio-container{
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.portfolio-h2{
    margin-bottom: 20px;
}
.portfolio-h2 span{
    display: block;
    color: #888888;
    font-family: 'Merriweather';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.portfolio-h2 h2{;
    color: #f6f6f4;
    margin-bottom: 20px;
}
.portfolio-p{
    color: #dedede;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 40px;
}
.portfolio-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 1200px;
    margin: 0 auto;
}
.portfolio-item{
    background-color: #0b0c10; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 4px 6px #e9c46a;
    transition: transform 0.3s ease-in-out;
}
.portfolio-item:hover{
    transform: translateY(-10px);
}
.portfolio-item img{
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.portfolio-item h3{
    font-size: 20px;
    color: #f6f6f4;
    margin-bottom: 10px;
}
.portfolio-item p{
    font-size: 14px;
    color: #dedede;
    margin-bottom: 10px;
}
.portfolio-item strong{
    color: #f6f6f4;
}
.btn-portfolio{
    width: 1200px;
    margin: 0 auto;
}
.button-portfolio{
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    color: #f6f6f4;
    background-color: #a8a8a8;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
}
.button-portfolio:hover{
    background-color: #e9c46a;
    color: black;
}
.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) {
    .about-container,
    .portfolio-container,
    .services-conatiner {
        padding: 20px;
    }

    .about-text {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .about-images-container {
        flex: 1 1 100%;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item,
    .service-item {
        padding: 15px;
    }

    .portfolio-item h3,
    .service-item h3 {
        font-size: 1.2rem;
    }
}

@media(max-width: 768px) {
    .section-heading2 {
        font-size: 1.5rem;
    }

    .about-container,
    .portfolio-container,
    .services-conatiner {
        padding: 10px;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-images {
        flex-direction: column;
        align-items: center;
    }

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

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

    .button-about-more,
    .button-portfolio,
    .button-services {
        width: 100%;
        padding: 10px;
    }
}

@media(max-width: 480px) {
    .section-heading2 {
        font-size: 1.2rem;
    }

    .portfolio-item h3,
    .service-item h3 {
        font-size: 1rem;
    }

    .about-img,
    .about-team,
    .portfolio-thumbnail,
    .service-icon {
        max-width: 100%;
        height: auto;
    }

    .button-about-more,
    .button-portfolio,
    .button-services {
        padding: 10px 15px;
        font-size: 1rem;
    }
}