/* Contact Page Specific Styles */

/* Contact Section */
.contact {
    padding: 100px 5%;
    background-color: #ffffff;
    color: #000000;
}

.contact-content-item-image {
    min-width: 500px;
    height: 500px;
    object-fit: cover;
    background-image: url('/static/assets/img/contact_main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content-title {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;  
    letter-spacing: 0%;
    line-height: 1.5em;
    
}

.contact-content-item {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    gap: 40px;
    height: 560px;
}

.contact-content-item-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.contact-content-item-content-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.contact-content-item-content-item input {
    width: 100%;
    height: 60px;
    opacity: 1;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 16px;
    border-radius: 4px;
    font-family: "Pretendard", sans-serif;
}

.contact-content-item-content-item input::placeholder {
    color: #bbb;
    opacity: 1;
}

.contact-content-item-content-item textarea {
    width: 100%;
    height: 266px;
    opacity: 1;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 16px;
    border-radius: 4px;
    font-family: "Pretendard", sans-serif;
    resize: vertical;
}

.contact-content-item-content-item textarea::placeholder {
    color: #bbb;
    opacity: 1;
}

.contact-content-item-content-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
}

.contact-content-item-content-button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.contact-content-item-content-button-button {
    padding: 15px 60px;
    font-size: 18px;
    font-weight: 600;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Pretendard", sans-serif;
}

.contact-content-item-content-button-button:hover {
    background-color: #333333;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-content p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-close-btn {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Pretendard", sans-serif;
}

.modal-close-btn:hover {
    background-color: #333333;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-content-title {
        font-size: 36px;
        padding: 24px 20px 14px 20px;
    }

    .contact-content-item {
        flex-direction: column;
        gap: 30px;
        height: auto;
    }

    .contact-content-item img {
        width: 100%;
        height: 200px;
    }

    .contact-content-item-content {
        gap: 15px;
        padding: 0 20px;
    }

    .contact-content-item-content-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-content-item-content-item input {
        width: 100%;
        height: 50px;
        opacity: 1;
        border: 1px solid #ddd;
        padding: 12px;
        font-size: 14px;
        border-radius: 4px;
        box-sizing: border-box;
    }

    .contact-content-item-content-item input::placeholder {
        color: #bbb;
        opacity: 1;
    }

    .contact-content-item-content-item textarea {
        width: 100%;
        height: 200px;
        opacity: 1;
        border: 1px solid #ddd;
        padding: 12px;
        font-size: 14px;
        border-radius: 4px;
        box-sizing: border-box;
        resize: vertical;
    }

    .contact-content-item-content-item textarea::placeholder {
        color: #bbb;
        opacity: 1;
    }

    .contact-content-item-content-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .contact-content-item-content-button {
        margin-top: 20px;
        padding: 0 20px;
    }

    .contact-content-item-content-button-button {
        padding: 12px 40px;
        font-size: 16px;
        width: 160px;
    }

    .contact-content-item-image {
        height: 200px;
        object-fit: cover;
        background-image: url('/static/assets/img/contact_main.png');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        min-width: 100%;
    }
}
