/* Application Page Specific Styles */

/* Page Background */
body {
    background-image: url('/images/other_pages_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.hero {
    padding: 30px 0 20px;
    margin-top: 70px;
}

.hero-content {
    text-align: center;
}

.hero-content h2 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin-bottom: 3rem;
}

.application-section {
    padding: 40px 0;
}

.application-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
}

.application-info {
    text-align: center;
    margin-bottom: 2rem;
}

.application-info h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.application-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.application-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* 모바일 반응형 설정 */
@media (max-width: 768px) {
    .application-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* 모바일에서 자동 확대 방지 */
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .application-info h3 {
        font-size: 1.5rem;
    }
    
    .application-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .application-content {
        padding: 0 0.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
    }
}
