.home {
    width: 100%;
    min-height: auto;
    background-color: #0e0e0e;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.home .background-container {
    max-width: 2100px;
    width: 2100px;
    height: auto;
    position: relative;
    background-image: url("../photo/logo1.svg"), url("../photo/homeback.webp");
    background-repeat: no-repeat, no-repeat;
    background-position: 95% 95%, 500px center;
    background-size: 10% auto, auto 1080px;
}

.home .section-content {
    padding-top: 250px;
    padding-left: 200px;
    position: relative;
    min-height: 1080px;
    width: 100%;
    max-width: 2000px;
    z-index: 2;
}

.home .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 650px;
    height: auto;
    color: #a9a9a9;
    font-weight: 200;
    font-size: 18px;
    text-align: justify;
    line-height: 25px;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease-out forwards;
}

.logo-images {
    display: flex;
    align-items: flex-end;
    max-width: 470px;
    gap: 10px;
}

.phone-overlay {
    position: absolute;
    height: 20px;
    width: 200px;
    right: 60px;
    top: 35px;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-size: 16px;
    color: white;
}

.home .info {
    position: absolute;
    max-width: 1000px;
    left: 200px;
    bottom: 40px;
    letter-spacing: 1px;
    font-size: 19px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .home .background-container {
        width: 100%;
        max-width: 100%;
        background-image: url("../photo/homeback.webp");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: auto 400px;  
    }

    .home .section-content {
        padding-top: 120px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home .logo {
        max-width: 100%;
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 20px;
        font-size: 16px;
        line-height: 22px;
    }

    .logo-images {
        width: 50%;
        max-width: 280px;
        justify-content: center;
    }

    .phone-overlay {
        display: none;
    }

    .home .info {
        display: none;
    }
}
