/************************************************

                    메인 배너
     
*************************************************/
/* 경로와 제목 스타일 */
.breadcrumb {
    position: relative; 
    z-index: 1;
    padding-top: 300px;

    padding-bottom: 40px;
    background-image: url('/assets/img/background/contact.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    justify-content: flex-end; 
    text-align: right;
}

.breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 0;
}

.breadcrumb h1 {
    font-size: 50px;
    font-weight: 800px;
    color: rgb(218, 218, 218);
    margin-top: 10px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb p {
    font-size: 20px;
    color: white;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* 본문 내용 스타일 */
.contact-section::before {
    content: "";
    background: url('/assets/img/background/small_logo.webp') no-repeat center center;
    background-size: 200px; /* or cover, contain, etc */
    position: absolute;
    top: 10px;
    right: 10px;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
}

.contact-section {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: -40px auto 80px;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.062);

    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    background-color: #f5f7fa;
    color: #2b2b2b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    font-weight: bold;
    text-align: left;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    max-width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1e3c72;
    outline: none;
}

.contact-form button {
    margin-top: 25px;
    padding: 12px;
    font-size: 1em;
    color: white;
    background-color: #1e3c72;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #164a6b;
}

@media screen and (max-width: 600px) {
.breadcrumb {
        padding-top: 150px;
        padding-bottom: 50px;        
    }

    /* 본문 내용 스타일 */
    .breadcrumb h1 {
        font-size: 32px;
    }
    
    .breadcrumb p {
        font-size: 15px;
    }
    
    .contact-section::before {
        background-size: 150px;
        top: 0px;
        right: 0px;
    }

    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-form button {
        max-width: 100%;
    }
}

/* Mobile watermark removal */
@media screen and (max-width: 768px) {
  .contact-section::before {
    display: none;
    content: none;
  }
}
